projects
/
binutils-gdb.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6e78c1
)
Fix thinko checking for dlls in archives.
author
Nick Clifton
<nickc@redhat.com>
Wed, 4 Feb 2004 09:13:28 +0000
(09:13 +0000)
committer
Nick Clifton
<nickc@redhat.com>
Wed, 4 Feb 2004 09:13:28 +0000
(09:13 +0000)
ld/ChangeLog
patch
|
blob
|
history
ld/emultempl/pe.em
patch
|
blob
|
history
diff --git
a/ld/ChangeLog
b/ld/ChangeLog
index fc652ed30bf5fcbaa1cb55cb518e57c84cd93833..df0c6bb774abd8bc73e8f05d6ddd3e8eef544fa7 100644
(file)
--- a/
ld/ChangeLog
+++ b/
ld/ChangeLog
@@
-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.
diff --git
a/ld/emultempl/pe.em
b/ld/emultempl/pe.em
index 4f12d7f5bf96a631637f4fbaf6246ed27aa25281..8a7b20da92fff1f80dcc00a964a25066ea52d9a2 100644
(file)
--- a/
ld/emultempl/pe.em
+++ b/
ld/emultempl/pe.em
@@
-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;
}