diff options
author | Jim Meyering <jim@meyering.net> | 2004-01-23 15:41:01 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-01-23 15:41:01 +0000 |
commit | 14abf5e07094b77f315aedcc13396d34dfb65706 (patch) | |
tree | 8cd7aaa0bb74825f1a727416a3bf4ee5186056f5 /man | |
parent | a28a8b7cefb07024376244eed4365d310194c1e9 (diff) | |
download | coreutils-14abf5e07094b77f315aedcc13396d34dfb65706.tar.xz |
(.x.1): Prefix help2man invocation with `$(PERL) --'
so it works on systems with Perl installed somewhere other than in /usr/bin.
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index a10c4b89c..20cf99ec8 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -129,7 +129,7 @@ mapped_name = `echo $*|sed 's/install/ginstall/; s/test/[/'` @echo "Updating man page $@"; \ mkdir $t; \ (cd $t && $(LN_S) ../../src/$(mapped_name)$(EXEEXT) $*$(EXEEXT)); \ - $(srcdir)/help2man \ + $(PERL) -- $(srcdir)/help2man \ --info-page='$(PACKAGE) $*' \ --include=$(srcdir)/$*.x \ --output=$@ $t/$*$(EXEEXT) |