* bin/autoscan.in (scan_file): Specify the location in `&used'

invocations.
From Nicolas Joly.
This commit is contained in:
Akim Demaille 2002-03-19 15:25:26 +00:00
parent 3b4578e038
commit 000289a83d
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2002-03-19 Akim Demaille <akim@epita.fr>
* bin/autoscan.in (scan_file): Specify the location in `&used'
invocations.
From Nicolas Joly.
2002-03-19 Akim Demaille <akim@epita.fr>
* doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.

View File

@ -359,12 +359,12 @@ sub scan_file ()
if (/\.[chlym](\.in)?$/)
{
used 'programs', 'cc';
used 'programs', 'cc', $File::Find::name;
scan_c_file ($_);
}
elsif (/\.(cc|cpp|cxx|CC|C|hh|hpp|hxx|HH|H|yy|ypp|ll|lpp)(\.in)?$/)
{
used 'programs', 'c++';
used 'programs', 'c++', $File::Find::name;
scan_c_file ($_);
}
elsif (/^[Mm]akefile(\.in)?$/ || /^GNUmakefile(\.in)?$/)