From: Tom Tromey Date: Sun, 26 Oct 1997 00:30:48 +0000 (+0000) Subject: bug fix X-Git-Tag: Release-1-2d~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7a073c19519e7b0dc83ed37a9c7e85fc679a76b6;p=thirdparty%2Fautomake.git bug fix --- diff --git a/ChangeLog b/ChangeLog index b02fd4d08..d0ac5dbda 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ Sat Oct 25 12:39:19 1997 Tom Tromey + * automake.in (scan_one_configure_file): Skip empty string for + Perl 4. From Assar Westerlund. + * config.guess, config.sub, texinfo.tex: New versions from FSF. Fri Oct 24 23:15:09 1997 Tom Tromey diff --git a/automake.in b/automake.in index 08be6b8b1..a498778dc 100755 --- a/automake.in +++ b/automake.in @@ -3961,7 +3961,8 @@ sub scan_one_configure_file # Look at potential Makefile.am's. foreach (split) { - next if $_ eq "\\"; + # Must skip empty string for Perl 4. + next if $_ eq "\\" || $_ eq ''; # Handle $local:$input syntax. Note that we ignore # every input file past the first, though we keep