summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaetan Nadon <memsize@videotron.ca>2011-06-09 15:49:23 -0400
committerGaetan Nadon <memsize@videotron.ca>2011-06-10 15:27:40 -0400
commitf4bdafebaf123c584e1b5e4ff1bc48f7cf4c5b26 (patch)
tree1ceaababf1cef001d83a9c259342d6421440db15
parentf4930482c24a22c8cdf9da3c96516936ddd1f7b9 (diff)
make: remove unneeded AM_V_GEN silent rule directive.
It happens to be in the middle of the script statement and cause this incorrect output: rm XCloseDevice.man && make GEN XOpenDevice.3 /bin/bash: line 1: @echo: command not found /bin/bash: line 2: @echo: command not found [...] Reviewed-by: Dan Nicholson <dbn.lists@gmail.com> Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r--man/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index c8db111..1b29b72 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -171,8 +171,8 @@ SUFFIXES += .txt .xml
# Invoke asciidoc/xmlto main man page generation for shadow pages
$(libman_shadows):
@if test ! -f $(@:.man=.libmansuffix); then \
- $(AM_V_GEN)rm -f $<; \
- $(AM_V_GEN)$(MAKE) $(AM_MAKEFLAGS) $< || exit 1; \
+ rm -f $<; \
+ $(MAKE) $(AM_MAKEFLAGS) $< || exit 1; \
fi
$(AM_V_GEN)mv -f $(@:.man=.libmansuffix) $@
endif