mirror of
git://git.sv.gnu.org/autoconf
synced 2024-12-09 02:10:22 +08:00
* bin/autoscan.in (scan_file): Specify the location in `&used'
invocations. From Nicolas Joly.
This commit is contained in:
parent
3b4578e038
commit
000289a83d
@ -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.
|
||||
|
@ -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)?$/)
|
||||
|
Loading…
Reference in New Issue
Block a user