summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorMaarten Bosmans <mkbosmans@gmail.com>2011-03-09 10:00:21 +0100
committerColin Guthrie <cguthrie@mandriva.org>2011-03-11 11:49:43 +0000
commite2df84497629d61706c455ed2829db0bebb7e5a5 (patch)
tree976fe22691c3f828ea90f917e0cbbe0c1a610d5c /man
parentb3721a12c5c31ae55141ff46af0c553d060fe363 (diff)
build: Use silent rules for generating files
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index 7793fe7d..eca1fb9e 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -36,7 +36,7 @@ noinst_DATA = \
default.pa.5.xml
%.xml: %.xml.in Makefile
- sed -e 's,@pulseconfdir\@,$(pulseconfdir),g' \
+ $(AM_V_GEN) sed -e 's,@pulseconfdir\@,$(pulseconfdir),g' \
-e 's,@PACKAGE_BUGREPORT\@,$(PACKAGE_BUGREPORT),g' \
-e 's,@PACKAGE_URL\@,$(PACKAGE_URL),g' $< > $@
@@ -66,7 +66,7 @@ CLEANFILES += \
$(dist_man_MANS)
%: %.xml Makefile
- perl $(srcdir)/xmltoman $< > $@ || rm -f $@
+ $(AM_V_GEN) perl $(srcdir)/xmltoman $< > $@ || rm -f $@
endif