summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorPavel Roskin <proski@gnu.org>2000-10-15 02:12:38 +0000
committerPavel Roskin <proski@gnu.org>2000-10-15 02:12:38 +0000
commitdbea06f48be0c27ba1101f48271907ff7ca4fe20 (patch)
tree5f446d64e319db7372021dd6dd2b03095544fd04 /m4
parentf1fcddedab3f0eb6caeb664e32f14a2bebeae5c7 (diff)
downloadautoconf-dbea06f48be0c27ba1101f48271907ff7ca4fe20.tar.gz
* m4/missing.m4 (AM_MISSING_PROG): Use $SHELL to run "missing"
* configure.in: Don't add $SHELL to the path of help2man - it is already added by AM_MISSING_PROG.
Diffstat (limited to 'm4')
-rw-r--r--m4/missing.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/m4/missing.m4 b/m4/missing.m4
index 39178df2..6d383f2b 100644
--- a/m4/missing.m4
+++ b/m4/missing.m4
@@ -12,7 +12,7 @@ if ($2 --version) < /dev/null > /dev/null 2>&1; then
$1=$2
AC_MSG_RESULT(found)
else
- $1="$3/missing $2"
+ $1="$SHELL $3/missing $2"
AC_MSG_RESULT(missing)
fi
AC_SUBST($1)])