Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cut-n-paste/gimpcellrenderertoggle
diff options
context:
space:
mode:
authorJavier Jardón <javierjc1982@gmail.com>2009-07-22 00:27:19 (GMT)
committer Nickolay V. Shmyrev <nshmyrev@yandex.ru>2009-07-22 00:27:19 (GMT)
commit7b5e14ea3df691578a091c563be0081ff850a367 (patch)
tree830bdd24a2729f59dcc859cbc2513b0e64ea75d5 /cut-n-paste/gimpcellrenderertoggle
parent5b96694056a9bfbbeca84a44dfbe9eb82d684e10 (diff)
[build] Use AM_V_GEN to make custom commands silent
See bug #585355 for details
Diffstat (limited to 'cut-n-paste/gimpcellrenderertoggle')
-rw-r--r--cut-n-paste/gimpcellrenderertoggle/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/cut-n-paste/gimpcellrenderertoggle/Makefile.am b/cut-n-paste/gimpcellrenderertoggle/Makefile.am
index 1f0b3de..65580e0 100644
--- a/cut-n-paste/gimpcellrenderertoggle/Makefile.am
+++ b/cut-n-paste/gimpcellrenderertoggle/Makefile.am
@@ -20,12 +20,12 @@ libgimpcellrenderertoggle_la_SOURCES = \
libgimpcellrenderertoggle_la_extra_sources = gimpwidgetsmarshal.list
gimpwidgetsmarshal.h: $(srcdir)/gimpwidgetsmarshal.list
- $(GLIB_GENMARSHAL) --prefix=_gimp_widgets_marshal $(srcdir)/gimpwidgetsmarshal.list --header >> xgen-wmh \
+ $(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=_gimp_widgets_marshal $(srcdir)/gimpwidgetsmarshal.list --header >> xgen-wmh \
&& (cmp -s xgen-wmh $(@F) || cp xgen-wmh $(@F)) \
&& rm -f xgen-wmh xgen-wmh~
gimpwidgetsmarshal.c: gimpwidgetsmarshal.h
- echo "#include \"gimpwidgetsmarshal.h\"" >> xgen-wmc \
+ $(AM_V_GEN)echo "#include \"gimpwidgetsmarshal.h\"" >> xgen-wmc \
&& $(GLIB_GENMARSHAL) --prefix=_gimp_widgets_marshal $(srcdir)/gimpwidgetsmarshal.list --body >> xgen-wmc \
&& cp xgen-wmc $(@F) \
&& rm -f xgen-wmc xgen-wmc~