mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-24 10:54:42 +08:00
* 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:
parent
dd0b613c2a
commit
9656b1839e
@ -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.
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user