From: Marcel Holtmann Date: Mon, 24 Aug 2009 10:02:32 +0000 (-0700) Subject: Use more global command place holders X-Git-Tag: accepted/2.0alpha-wayland/20121110.002834~3285 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7a94da33ebf4f05c06014f0ad60d5ac0711469e4;p=profile%2Fivi%2Fconnman.git Use more global command place holders --- diff --git a/Makefile.am b/Makefile.am index b987821..b825874 100644 --- a/Makefile.am +++ b/Makefile.am @@ -169,12 +169,12 @@ src/builtin.h: src/genbuiltin $(builtin_sources) $(AM_V_GEN)$(srcdir)/src/genbuiltin $(builtin_modules) > $@ src/connman.exp: $(src_connmand_OBJECTS) - $(AM_V_GEN)$(NM) -B $^ | $(AWK) '{ print $$3 }' | sort -u | \ + $(AM_V_GEN)$(NM) $^ | $(AWK) '{ print $$3 }' | sort -u | \ $(EGREP) -e '^connman_' -e '^g_dbus_' > $@ src/connman.ver: src/connman.exp $(AM_V_at)echo "{ global:" > $@ - $(AM_V_GEN)cat $< | $(SED) -e "s/\(.*\)/\1;/" >> $@ + $(AM_V_GEN)$(SED) -e "s/\(.*\)/\1;/" $< >> $@ $(AM_V_at)echo "local: *; };" >> $@ src/connman.conf: src/connman-dbus.conf src/connman-polkit.conf @@ -195,4 +195,4 @@ include/connman/%.h: include/%.h $(AM_V_GEN)$(LN_S) $(abs_top_srcdir)/$< $@ clean-local: include/connman - @rm -r $< + @$(RM) -r $<