From: Akim Demaille Date: Fri, 3 Aug 2001 09:23:34 +0000 (+0000) Subject: * bin/autoconf.in ($@): Work around the usual sh bug. X-Git-Tag: AUTOCONF-2.52d~126 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=01f2ae88a01de768935cddd505a51ef7e361a9af;p=thirdparty%2Fautoconf.git * bin/autoconf.in ($@): Work around the usual sh bug. From Nicolas Joly. --- diff --git a/ChangeLog b/ChangeLog index 3c44e2436..18ae22535 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2001-08-03 Akim Demaille + + * bin/autoconf.in ($@): Work around the usual sh bug. + From Nicolas Joly. + 2001-08-03 Akim Demaille Clean up the handling of the M4 builtins tracing exception. diff --git a/bin/autoconf.in b/bin/autoconf.in index 2ea8c71ba..604985bce 100644 --- a/bin/autoconf.in +++ b/bin/autoconf.in @@ -232,8 +232,8 @@ run_autom4te="$autom4te "\ # Autom4te expansion. eval set dummy "$traces" shift -$verbose "$me: running $run_autom4te ""$@"" $infile --output $outfile" >&2 -$run_autom4te "$@" $infile --output $outfile || +$verbose "$me: running $run_autom4te "${1+"$@"}" $infile --output $outfile" >&2 +$run_autom4te ${1+"$@"} $infile --output $outfile || { (exit 1); exit 1; } if test -z "$traces" && test "x$outfile" != x-; then diff --git a/man/autoconf.1 b/man/autoconf.1 index 1b06c4b68..6679040b7 100644 --- a/man/autoconf.1 +++ b/man/autoconf.1 @@ -1,5 +1,5 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.24. -.TH AUTOCONF "1" "August 2001" "GNU Autoconf 2.52b" FSF +.TH AUTOCONF "1" "August 2001" "GNU Autoconf 2.52c" FSF .SH NAME autoconf \- Generate configuration scripts .SH SYNOPSIS