summaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2011-06-09 15:59:23 -0400
committerGaetan Nadon <memsize@videotron.ca>2011-06-10 15:28:22 -0400
commit2d2581479c64b8b44ab91e90ecb04acd5d106ea2 (patch)
treef4983bdefede9356c6fe9a6aa665176deb583c5d /man
parentf4bdafebaf123c584e1b5e4ff1bc48f7cf4c5b26 (diff)
make: use AM_V_at rather than AM_V_GEN to prefix the mv command
This will prevent outputting a "GEN" prefix. Moving and removing files is not "generating" anything. Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
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 1b29b72..2181ea9 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -166,7 +166,7 @@ SUFFIXES += .txt .xml
$(AM_V_GEN)$(ASCIIDOC) -b docbook -d manpage -o $@ $<
.xml.man:
$(AM_V_GEN)$(XMLTO) man $<
- $(AM_V_GEN)mv -f $(@:.man=.libmansuffix) $@
+ $(AM_V_at)mv -f $(@:.man=.libmansuffix) $@
# Invoke asciidoc/xmlto main man page generation for shadow pages
$(libman_shadows):
@@ -174,5 +174,5 @@ $(libman_shadows):
rm -f $<; \
$(MAKE) $(AM_MAKEFLAGS) $< || exit 1; \
fi
- $(AM_V_GEN)mv -f $(@:.man=.libmansuffix) $@
+ $(AM_V_at)mv -f $(@:.man=.libmansuffix) $@
endif