From a425bdc11d0f978ad8f964ff25ef85eac20753e4 Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Mon, 24 Aug 2009 02:51:42 -0700 Subject: [PATCH] Use correct variable for grep command --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 05578d9..b987821 100644 --- a/Makefile.am +++ b/Makefile.am @@ -170,7 +170,7 @@ src/builtin.h: src/genbuiltin $(builtin_sources) src/connman.exp: $(src_connmand_OBJECTS) $(AM_V_GEN)$(NM) -B $^ | $(AWK) '{ print $$3 }' | sort -u | \ - grep -E -e '^connman_' -e '^g_dbus_' > $@ + $(EGREP) -e '^connman_' -e '^g_dbus_' > $@ src/connman.ver: src/connman.exp $(AM_V_at)echo "{ global:" > $@ -- 2.7.4