From b3fd85bb16bfa620e41ac84aeac9337347bfab9d Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 22 Aug 2009 22:53:38 -0700 Subject: [PATCH] Make use of $(AM_V_at) for silent commands --- plugins/Makefile.am | 10 +++++----- src/Makefile.am | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/plugins/Makefile.am b/plugins/Makefile.am index d9e5f97..34bc58f 100644 --- a/plugins/Makefile.am +++ b/plugins/Makefile.am @@ -221,14 +221,14 @@ EXTRA_DIST = polkit.policy MAINTAINERCLEANFILES = Makefile.in builtin.h: - @echo "" > $@ + $(AM_V_at)echo "" > $@ $(AM_V_GEN)list='$(builtin_modules)'; for i in $$list; \ do echo "extern struct connman_plugin_desc __connman_builtin_$$i;" >> $@; done - @echo "" >> $@ - @echo "static struct connman_plugin_desc *__connman_builtin[] = {" >> $@ - @list='$(builtin_modules)'; for i in $$list; \ + $(AM_V_at)echo "" >> $@ + $(AM_V_at)echo "static struct connman_plugin_desc *__connman_builtin[] = {" >> $@ + $(AM_V_at)list='$(builtin_modules)'; for i in $$list; \ do echo "&__connman_builtin_$$i," >> $@; done - @echo "NULL };" >> $@ + $(AM_V_at)echo "NULL };" >> $@ connman.policy: polkit.policy if POLKIT diff --git a/src/Makefile.am b/src/Makefile.am index 7df6478..4b99797 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -53,9 +53,9 @@ connman.exp: $(connmand_OBJECTS) $(AM_V_GEN)nm -B *.o | awk '{ print $$3 }' | sort -u | grep -E -e '^connman_' > $@ connman.ver: connman.exp - @echo "{ global:" > $@ + $(AM_V_at)echo "{ global:" > $@ $(AM_V_GEN)cat $< | sed -e "s/\(.*\)/\1;/" >> $@ - @echo "local: *; };" >> $@ + $(AM_V_at)echo "local: *; };" >> $@ connman.conf: connman-dbus.conf connman-polkit.conf if POLKIT -- 2.7.4