summaryrefslogtreecommitdiff
path: root/build-aux/x-to-1.in
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/x-to-1.in')
-rw-r--r--build-aux/x-to-1.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/x-to-1.in b/build-aux/x-to-1.in
index 3c598e8347..d5cb868665 100644
--- a/build-aux/x-to-1.in
+++ b/build-aux/x-to-1.in
@@ -44,9 +44,9 @@ progname=`basename $aux .x`
case "$PERL" in *"/missing perl") perlok=no;; *) perlok=yes;; esac
if test @CROSS_COMPILING@ = no && test -f $executable && test $perlok = yes; then
echo "Updating man page $output"
- echo "$HELP2MAN --include=$aux $executable > $output"
+ echo "$PERL $HELP2MAN --include=$aux $executable > $output"
rm -f t-$progname.1
- $HELP2MAN --include=$aux $executable > t-$progname.1 || exit 1
+ $PERL $HELP2MAN --include=$aux $executable > t-$progname.1 || exit 1
if test -n "$update"; then
# In --update mode, don't overwrite the output if nothing would change.
if cmp t-$progname.1 $output >/dev/null 2>&1; then