From: Akim Demaille Date: Thu, 20 Feb 2003 17:04:10 +0000 (+0000) Subject: * bin/autoreconf.in (autoreconf_current_directory): Properly X-Git-Tag: AUTOCONF-2.57a~102 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9bbb5167519121b28d23398549d955f0a4f88071;p=thirdparty%2Fautoconf.git * bin/autoreconf.in (autoreconf_current_directory): Properly handle an empty aclocal.m4. --- diff --git a/ChangeLog b/ChangeLog index 627b28354..71b3f8e2c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-02-20 Klee Dienes + + * bin/autoreconf.in (autoreconf_current_directory): Properly + handle an empty aclocal.m4. + 2003-02-20 Akim Demaille * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote diff --git a/THANKS b/THANKS index 09c09b8f7..5565c4520 100644 --- a/THANKS +++ b/THANKS @@ -103,6 +103,7 @@ Kelly Anderson tgcorp@attglobal.net Ken Pizzini ken@halcyon.com Ken Raeburn raeburn@cygnus.com Kevin Ryde user42@zip.com.au +Klee Dienes kdienes@apple.com Koji Arai JCA02266@nifty.ne.jp Kurt D. Zeilenga kurt@openldap.org Larry Jones larry.jones@sdrc.com diff --git a/bin/autoreconf.in b/bin/autoreconf.in index c40e9f0c9..774d0644a 100644 --- a/bin/autoreconf.in +++ b/bin/autoreconf.in @@ -297,7 +297,7 @@ sub autoreconf_current_directory () my $aclocal_m4 = new Autom4te::XFile 'aclocal.m4'; $_ = $aclocal_m4->getline; $uses_aclocal = 0 - unless /generated.*by aclocal/; + unless defined ($_) && /generated.*by aclocal/; } # If there are flags for aclocal in Makefile.am, use them.