summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-04-27 15:08:36 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-04-27 15:08:36 -0700
commitb6d8a1adec9f780826090fb923c54f16fd7f9ce7 (patch)
tree1c2e5bc95f88fcea6ff6ff62ec33fea81f5a6b6b
parent7510112f30e33cfb9650ee939564f73ff9633bea (diff)
Use $(AM_V_GEN) & $(SED) to generate man pages
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--man/Makefile.am4
1 files changed, 1 insertions, 3 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index 8f2454b..5f0dd85 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -31,8 +31,6 @@ EXTRA_DIST = @DRIVER_NAME@.man
CLEANFILES = $(driverman_DATA)
-SED = sed
-
# Strings to replace in man pages
XORGRELSTRING = @PACKAGE_STRING@
XORGMANNAME = X Version 11
@@ -52,4 +50,4 @@ MAN_SUBSTS = \
SUFFIXES = .$(DRIVER_MAN_SUFFIX) .man
.man.$(DRIVER_MAN_SUFFIX):
- sed $(MAN_SUBSTS) < $< > $@
+ $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@