OSDN Git Service

* speclib: Use last dll found since that's the real name of the cygwin DLL.
authorcgf <cgf>
Tue, 1 Dec 2009 00:40:22 +0000 (00:40 +0000)
committercgf <cgf>
Tue, 1 Dec 2009 00:40:22 +0000 (00:40 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/speclib

index b0daf5f..effa838 100644 (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>
 
        * fhandler_disk_file.cc (fhandler_base::fstat_helper): Fix typos in
index 10218d8..7ac4d1c 100755 (executable)
@@ -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;