From 01f2ae88a01de768935cddd505a51ef7e361a9af Mon Sep 17 00:00:00 2001 From: Akim Demaille Date: Fri, 3 Aug 2001 09:23:34 +0000 Subject: [PATCH] * bin/autoconf.in ($@): Work around the usual sh bug. From Nicolas Joly. --- ChangeLog | 5 +++++ bin/autoconf.in | 4 ++-- man/autoconf.1 | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3c44e243..18ae2253 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 2ea8c71b..604985bc 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 1b06c4b6..6679040b 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