* 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>.
This commit is contained in:
Ralf Wildenhues 2006-03-26 21:27:56 +00:00
parent dd0b613c2a
commit 9656b1839e
2 changed files with 7 additions and 1 deletions

View File

@ -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.

View 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);
}