summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillem Jover <guillem@hadrons.org>2010-10-20 09:30:04 +0200
committerGuillem Jover <guillem@hadrons.org>2010-10-21 05:28:25 +0200
commitbb02364036554a273bbcec8d7eeaee9865e9390f (patch)
tree1f84106fc0f03ef1f0efc8732a913387cf1100c3
parent549e7f3da0c69d80e37ef1dad8926ce4df8796ec (diff)
build: Use SED variable instead of hard-coding the command name
-rw-r--r--man/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am
index da3a3c2..55b3b7c 100644
--- a/man/Makefile.am
+++ b/man/Makefile.am
@@ -52,4 +52,4 @@ MAN_SUBSTS = \
SUFFIXES = .$(DRIVER_MAN_SUFFIX) .man
.man.$(DRIVER_MAN_SUFFIX):
- sed $(MAN_SUBSTS) < $< > $@
+ $(SED) $(MAN_SUBSTS) < $< > $@