diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2009-08-17 18:39:00 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-08-17 18:39:00 -0400 |
commit | d4f8da3f4855db24484a8924d883df362561b7ce (patch) | |
tree | a17555582f1b351a1aee5cf375f1830ef7613c04 /modules | |
parent | caed415f553a60176b33e30ee37e891cb720e9c6 (diff) | |
download | pango-d4f8da3f4855db24484a8924d883df362561b7ce.tar.gz |
Bug 592131 - Add AM_SILENT_RULES
And sprinkle some $(AM_V_GEN) around. Silent rules are disabled by
default.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/Makefile.am b/modules/Makefile.am index c68123ec..dc8a2c85 100644 --- a/modules/Makefile.am +++ b/modules/Makefile.am @@ -50,7 +50,7 @@ pango.modules: \ $(SUBDIRS) \ $(top_builddir)/config.status \ $(top_builddir)/pango/pango-querymodules$(EXEEXT) - @if $(RUN_QUERY_MODULES_TEST) && find . -name '*.la' | grep -v '\.libs' | grep -v libpango | grep '.' > /dev/null ; then \ + $(AM_V_GEN) if $(RUN_QUERY_MODULES_TEST) && find . -name '*.la' | grep -v '\.libs' | grep -v libpango | grep '.' > /dev/null ; then \ echo "Writing a pango.modules file to use with tests/examples."; \ $(top_builddir)/pango/pango-querymodules$(EXEEXT) `find . -name '*.la' | grep -v '\.libs' | grep -v libpango` > $@ ;\ else \ |