mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 21:19:54 +00:00
Fix thinko checking for dlls in archives.
This commit is contained in:
parent
d6e78c1105
commit
07a68a8066
@ -1,3 +1,7 @@
|
||||
2004-02-04 Danny Smith <dannysmith@users.sourceforge.net>
|
||||
|
||||
* emultempl/pe.em (_after_open): Fix thinko in 2003-12-18 patch.
|
||||
|
||||
2004-01-28 Alan Modra <amodra@bigpond.net.au>
|
||||
|
||||
* genscripts.sh: Fix typo.
|
||||
|
@ -1139,7 +1139,7 @@ gld_${EMULATION_NAME}_after_open (void)
|
||||
extension, and use that for the remainder of the
|
||||
comparisons. */
|
||||
pnt = strrchr (is3->the_bfd->filename, '.');
|
||||
if (pnt != NULL && strcmp (pnt, ".dll") != 0)
|
||||
if (pnt != NULL && strcmp (pnt, ".dll") == 0)
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user