summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-06-25 01:50:03 +0200
committerLennart Poettering <lennart@poettering.net>2010-06-25 01:50:03 +0200
commitc8eacc0f13f6df529f2f40961e2ddb3a45dc9f93 (patch)
tree7c7874798b58eaf56a0d60da14affc0448cc2e35 /man
parentfbc9039f85aa2078fd66a7cec4fc266794ecf4ba (diff)
build-sys: make things more quiet
Diffstat (limited to 'man')
-rw-r--r--man/Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index bbb8376..5b089ed 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -84,7 +84,7 @@ endif
endif
%.xml: %.xml.in Makefile
- sed -e 's,@pkgsysconfdir\@,$(pkgsysconfdir),g' \
+ $(AM_V_GEN) sed -e 's,@pkgsysconfdir\@,$(pkgsysconfdir),g' \
-e 's,@servicedir\@,$(servicedir),g' \
-e 's,@PACKAGE_BUGREPORT\@,$(PACKAGE_BUGREPORT),g' \
-e 's,@PACKAGE_URL\@,$(PACKAGE_URL),g' $< > $@
@@ -94,13 +94,13 @@ if USE_XMLTOMAN
CLEANFILES += $(man_MANS)
%.1: %.1.xml Makefile
- xmltoman $< > $@
+ $(AM_V_GEN)xmltoman $< > $@
%.5: %.5.xml Makefile
- xmltoman $< > $@
+ $(AM_V_GEN)xmltoman $< > $@
%.8: %.8.xml Makefile
- xmltoman $< > $@
+ $(AM_V_GEN)xmltoman $< > $@
xmllint: $(noinst_DATA)
for f in $(noinst_DATA) ; do \