Index: ChangeLog =================================================================== RCS file: /cvs/autoconf/ChangeLog,v retrieving revision 1.1530 diff -u -r1.1530 ChangeLog --- ChangeLog 2001/08/01 21:21:23 1.1530 +++ ChangeLog 2001/08/02 08:47:27 @@ -1,3 +1,8 @@ +2001-08-02 Nicolas Joly + + * bin/autoconf.in: Use `${1+"$@"}' not `"$@"' to avoid empty + argument in autom4te command line under Tru64. + 2001-08-01 Akim Demaille * configure.ac: Bump to 2.52c. Index: bin/autoconf.in =================================================================== RCS file: /cvs/autoconf/bin/autoconf.in,v retrieving revision 1.132 diff -u -r1.132 autoconf.in --- bin/autoconf.in 2001/08/01 13:58:44 1.132 +++ bin/autoconf.in 2001/08/02 08:47:42 @@ -232,8 +232,8 @@ # 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