]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* configure.in (HELP2MAN): Specify the third argument of
authorAkim Demaille <akim@epita.fr>
Tue, 22 Feb 2000 08:46:29 +0000 (08:46 +0000)
committerAkim Demaille <akim@epita.fr>
Tue, 22 Feb 2000 08:46:29 +0000 (08:46 +0000)
AM_MISSING_PROG.  Fixes autoconf/116.

ChangeLog
configure
configure.in

index 7d89763989a1639599d7356cc922f537b5e21f57..db556bca0a371e7a6da537bff7ff37e9aa077907 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2000-02-22  Pavel Roskin  <pavel_roskin@geocities.com>
+
+       * configure.in (HELP2MAN): Specify the third argument of
+       AM_MISSING_PROG.  Fixes autoconf/116.
+
 2000-02-21  Akim Demaille  <akim@epita.fr>
 
        * tests/tools.m4 (syntax.sh): The logic of the previous patch was
index 7ff6e7212c656180d302424bf43613108424dc47..1dfe8c0ff68acbcded65b056da340c52fdbb12f0 100755 (executable)
--- a/configure
+++ b/configure
@@ -956,7 +956,7 @@ if (help2man --version) < /dev/null > /dev/null 2>&1; then
    HELP2MAN=help2man
    echo "$ac_t""found" 1>&6
 else
-   HELP2MAN="/missing help2man"
+   HELP2MAN="\${SHELL} \${top_srcdir}/missing help2man"
    echo "$ac_t""missing" 1>&6
 fi
 
index e6ca066811d69fe9fec2b12894f23cfb77d1c8da..7145e6d7991ba9fc88cd00c26a20a79f6c101c6c 100644 (file)
@@ -21,7 +21,7 @@ dnl `autoconf' and `ifnames' use AWK.
 AC_PROG_AWK
 
 dnl Generating man pages.
-AM_MISSING_PROG(HELP2MAN, help2man)
+AM_MISSING_PROG(HELP2MAN, help2man, [\${SHELL} \${top_srcdir}])
 
 dnl We use a path for perl so the #! line in autoscan will work.
 AC_PATH_PROG(PERL, perl, no)