From: Akim Demaille Date: Tue, 22 Feb 2000 08:46:29 +0000 (+0000) Subject: * configure.in (HELP2MAN): Specify the third argument of X-Git-Tag: autoconf-2.50~1126 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=90accfe31855ed8138ab26aaa45d62ff1b6dd271;p=thirdparty%2Fautoconf.git * configure.in (HELP2MAN): Specify the third argument of AM_MISSING_PROG. Fixes autoconf/116. --- diff --git a/ChangeLog b/ChangeLog index 7d8976398..db556bca0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-02-22 Pavel Roskin + + * configure.in (HELP2MAN): Specify the third argument of + AM_MISSING_PROG. Fixes autoconf/116. + 2000-02-21 Akim Demaille * tests/tools.m4 (syntax.sh): The logic of the previous patch was diff --git a/configure b/configure index 7ff6e7212..1dfe8c0ff 100755 --- 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 diff --git a/configure.in b/configure.in index e6ca06681..7145e6d79 100644 --- a/configure.in +++ b/configure.in @@ -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)