* speclib: Use last dll found since that's the real name of the cygwin DLL.

This commit is contained in:
Christopher Faylor 2009-11-30 15:40:23 +00:00
parent 19ac72547f
commit c84fd8fe23
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2009-11-30 Christopher Faylor <me+cygwin@cgf.cx>
* speclib: Use last dll found since that's the real name of the cygwin
DLL.
2009-11-27 Corinna Vinschen <corinna@vinschen.de> 2009-11-27 Corinna Vinschen <corinna@vinschen.de>
* fhandler_disk_file.cc (fhandler_base::fstat_helper): Fix typos in * fhandler_disk_file.cc (fhandler_base::fstat_helper): Fix typos in

View File

@ -35,7 +35,7 @@ my $dllname;
while (<$nm_fd>) { while (<$nm_fd>) {
study; study;
if (/ I _(.*)_dll_iname/o) { if (/ I _(.*)_dll_iname/o) {
$dllname ||= $1; $dllname = $1;
} else { } else {
my ($file, $member, $symbol) = m%^([^:]*):([^:]*(?=:))?.* T (.*)%o; my ($file, $member, $symbol) = m%^([^:]*):([^:]*(?=:))?.* T (.*)%o;
next if !defined($symbol) || $symbol =~ $exclude_regex; next if !defined($symbol) || $symbol =~ $exclude_regex;