]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* bin/autoscan.in: The value of find_configure_ac should be
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 26 Mar 2006 21:27:56 +0000 (21:27 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Sun, 26 Mar 2006 21:27:56 +0000 (21:27 +0000)
checked for existence, so we don't barf over a nonexisting
configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.

ChangeLog
bin/autoscan.in

index 067e39ec27c1d814f67cb954250d08729ba3e28d..af91d850de42ed5ac8dc3f8c4b8d95f35ff66e9c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * bin/autoscan.in: The value of find_configure_ac should be
+       checked for existence, so we don't barf over a nonexisting
+       configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.
+
 2006-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * bin/autoupdate.in: Fix some typos.
index bb57d7fffae738b4f18308547cafc45e552157d5..48289f343607106739f991e99305596610564c1b 100644 (file)
@@ -631,7 +631,7 @@ my $configure_ac = find_configure_ac;
 init_tables;
 scan_files;
 output ('configure.scan');
-if ($configure_ac)
+if (-f $configure_ac)
   {
     check_configure_ac ($configure_ac);
   }