* speclib: Use last dll found since that's the real name of the cygwin DLL.
This commit is contained in:
parent
19ac72547f
commit
c84fd8fe23
|
@ -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>
|
||||
|
||||
* fhandler_disk_file.cc (fhandler_base::fstat_helper): Fix typos in
|
||||
|
|
|
@ -35,7 +35,7 @@ my $dllname;
|
|||
while (<$nm_fd>) {
|
||||
study;
|
||||
if (/ I _(.*)_dll_iname/o) {
|
||||
$dllname ||= $1;
|
||||
$dllname = $1;
|
||||
} else {
|
||||
my ($file, $member, $symbol) = m%^([^:]*):([^:]*(?=:))?.* T (.*)%o;
|
||||
next if !defined($symbol) || $symbol =~ $exclude_regex;
|
||||
|
|
Loading…
Reference in New Issue