[gnome-settings-daemon] Silence build by default



commit b9b785508085d77818c76ab4aed8ee574dbd1756
Author: Bastien Nocera <hadess hadess net>
Date:   Mon Sep 20 18:37:10 2010 +0100

    Silence build by default

 configure.ac                      |    2 ++
 data/Makefile.am                  |    2 +-
 gnome-settings-daemon/Makefile.am |    4 ++--
 plugins/datetime/Makefile.am      |    4 ++--
 plugins/media-keys/Makefile.am    |    6 +++---
 plugins/xrandr/Makefile.am        |    2 +-
 6 files changed, 11 insertions(+), 9 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index e75899a..e0b3a3c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12,6 +12,8 @@ AC_CONFIG_SRCDIR([gnome-settings-daemon/gnome-settings-manager.c])
 
 AM_INIT_AUTOMAKE([1.9 no-dist-gzip dist-bzip2 tar-ustar])
 
+m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
+
 AC_STDC_HEADERS
 AC_PROG_CXX
 AM_PROG_CC_C_O
diff --git a/data/Makefile.am b/data/Makefile.am
index b8660d7..21fbc11 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -26,7 +26,7 @@ service_in_files = org.gnome.SettingsDaemon.service.in
 service_DATA = $(service_in_files:.service.in=.service)
 
 org.gnome.SettingsDaemon.service: org.gnome.SettingsDaemon.service.in Makefile
-	@sed -e "s|\ libexecdir\@|$(libexecdir)|" $< > $@
+	$(AM_V_GEN) sed -e "s|\ libexecdir\@|$(libexecdir)|" $< > $@
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = gnome-settings-daemon.pc
diff --git a/gnome-settings-daemon/Makefile.am b/gnome-settings-daemon/Makefile.am
index 51c5bda..c889809 100644
--- a/gnome-settings-daemon/Makefile.am
+++ b/gnome-settings-daemon/Makefile.am
@@ -40,10 +40,10 @@ gsd_PROGRAMS = \
 	gnome-settings-daemon
 
 gnome-settings-manager-glue.h: gnome-settings-manager.xml Makefile.am
-	dbus-binding-tool --prefix=gnome_settings_manager --mode=glib-server $< > $@
+	$(AM_V_GEN) dbus-binding-tool --prefix=gnome_settings_manager --mode=glib-server $< > $@
 
 gnome-settings-client.h: gnome-settings-manager.xml Makefile.am
-	dbus-binding-tool --prefix=gnome_settings_manager --mode=glib-client $< > $@
+	$(AM_V_GEN) dbus-binding-tool --prefix=gnome_settings_manager --mode=glib-client $< > $@
 
 BUILT_SOURCES = 			\
 	gnome-settings-manager-glue.h	\
diff --git a/plugins/datetime/Makefile.am b/plugins/datetime/Makefile.am
index 3f6aea2..fbfc86e 100644
--- a/plugins/datetime/Makefile.am
+++ b/plugins/datetime/Makefile.am
@@ -6,7 +6,7 @@ dbus_services_in_files = org.gnome.SettingsDaemon.DateTimeMechanism.service.in
 polkit_in_files = org.gnome.settingsdaemon.datetimemechanism.policy.in
 
 gsd-datetime-mechanism-glue.h: $(srcdir)/gsd-datetime-mechanism.xml
-	$(AM_V_GEN)dbus-binding-tool \
+	$(AM_V_GEN) dbus-binding-tool \
 			--prefix=gsd_datetime_mechanism --mode=glib-server	\
 			--output=gsd-datetime-mechanism-glue.h			\
 			$(srcdir)/gsd-datetime-mechanism.xml
@@ -57,4 +57,4 @@ EXTRA_DIST =						\
 CLEANFILES = 		\
 	org.gnome.SettingsDaemon.DateTimeMechanism.service	\
 	org.gnome.settingsdaemon.datetimemechanism.policy	\
-	$(BUILT_SOURCES)
\ No newline at end of file
+	$(BUILT_SOURCES)
diff --git a/plugins/media-keys/Makefile.am b/plugins/media-keys/Makefile.am
index d4fcc37..917ae06 100644
--- a/plugins/media-keys/Makefile.am
+++ b/plugins/media-keys/Makefile.am
@@ -61,15 +61,15 @@ uninstall-local:
 	rm -f $(DESTDIR)$(icondir)/scalable/$(context)/touchpad-disabled.svg
 
 gsd-media-keys-manager-glue.h: gsd-media-keys-manager.xml Makefile
-	dbus-binding-tool --prefix=gsd_media_keys_manager --mode=glib-server $< > xgen-$(@F) \
+	$(AM_V_GEN) dbus-binding-tool --prefix=gsd_media_keys_manager --mode=glib-server $< > xgen-$(@F) \
 	&& ( cmp -s xgen-$(@F) $@ || cp xgen-$(@F) $@ ) \
 	&& rm -f xgen-$(@F)
 
 gsd-marshal.c: gsd-marshal.list
-	$(GLIB_GENMARSHAL) --prefix=gsd_marshal $< --header --body --internal > $@
+	$(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=gsd_marshal $< --header --body --internal > $@
 
 gsd-marshal.h: gsd-marshal.list
-	$(GLIB_GENMARSHAL) --prefix=gsd_marshal $< --header --internal > $@
+	$(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=gsd_marshal $< --header --internal > $@
 
 libmedia_keys_la_SOURCES = 		\
 	gsd-media-keys-plugin.h		\
diff --git a/plugins/xrandr/Makefile.am b/plugins/xrandr/Makefile.am
index 5dc94a8..c0c090c 100644
--- a/plugins/xrandr/Makefile.am
+++ b/plugins/xrandr/Makefile.am
@@ -35,7 +35,7 @@ plugin_LTLIBRARIES = \
 	libxrandr.la
 
 gsd-xrandr-manager-glue.h: gsd-xrandr-manager.xml Makefile
-	dbus-binding-tool --prefix=gsd_xrandr_manager --mode=glib-server $< > xgen-$(@F) \
+	$(AM_V_GEN) dbus-binding-tool --prefix=gsd_xrandr_manager --mode=glib-server $< > xgen-$(@F) \
 	&& ( cmp -s xgen-$(@F) $@ || cp xgen-$(@F) $@ ) \
 	&& rm -f xgen-$(@F)
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]