diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/datetime/Makefile.am | 2 | ||||
-rw-r--r-- | plugins/media-keys/Makefile.am | 6 | ||||
-rw-r--r-- | plugins/xrandr/Makefile.am | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/plugins/datetime/Makefile.am b/plugins/datetime/Makefile.am index 061443f..7c3b76a 100644 --- a/plugins/datetime/Makefile.am +++ b/plugins/datetime/Makefile.am @@ -6,7 +6,7 @@ dbus_services_in_files = org.mate.SettingsDaemon.DateTimeMechanism.service.in polkit_in_files = org.mate.settingsdaemon.datetimemechanism.policy.in msd-datetime-mechanism-glue.h: $(srcdir)/msd-datetime-mechanism.xml - $(AM_V_GEN)dbus-binding-tool \ + $(AM_V_GEN) dbus-binding-tool \ --prefix=msd_datetime_mechanism --mode=glib-server \ --output=msd-datetime-mechanism-glue.h \ $(srcdir)/msd-datetime-mechanism.xml diff --git a/plugins/media-keys/Makefile.am b/plugins/media-keys/Makefile.am index 9bd9553..d0a7b6a 100644 --- a/plugins/media-keys/Makefile.am +++ b/plugins/media-keys/Makefile.am @@ -56,15 +56,15 @@ uninstall-local: rm -f $(DESTDIR)$(icondir)/scalable/$(context)/touchpad-disabled.svg msd-media-keys-manager-glue.h: msd-media-keys-manager.xml Makefile - dbus-binding-tool --prefix=msd_media_keys_manager --mode=glib-server $< > xgen-$(@F) \ + $(AM_V_GEN) dbus-binding-tool --prefix=msd_media_keys_manager --mode=glib-server $< > xgen-$(@F) \ && ( cmp -s xgen-$(@F) $@ || cp xgen-$(@F) $@ ) \ && rm -f xgen-$(@F) msd-marshal.c: msd-marshal.list - $(GLIB_GENMARSHAL) --prefix=msd_marshal $< --header --body --internal > $@ + $(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=msd_marshal $< --header --body --internal > $@ msd-marshal.h: msd-marshal.list - $(GLIB_GENMARSHAL) --prefix=msd_marshal $< --header --internal > $@ + $(AM_V_GEN) $(GLIB_GENMARSHAL) --prefix=msd_marshal $< --header --internal > $@ libmedia_keys_la_SOURCES = \ msd-media-keys-plugin.h \ diff --git a/plugins/xrandr/Makefile.am b/plugins/xrandr/Makefile.am index 6bdfaae..b4afb93 100644 --- a/plugins/xrandr/Makefile.am +++ b/plugins/xrandr/Makefile.am @@ -35,7 +35,7 @@ plugin_LTLIBRARIES = \ libxrandr.la msd-xrandr-manager-glue.h: msd-xrandr-manager.xml Makefile - dbus-binding-tool --prefix=msd_xrandr_manager --mode=glib-server $< > xgen-$(@F) \ + $(AM_V_GEN) dbus-binding-tool --prefix=msd_xrandr_manager --mode=glib-server $< > xgen-$(@F) \ && ( cmp -s xgen-$(@F) $@ || cp xgen-$(@F) $@ ) \ && rm -f xgen-$(@F) |