From e205a09915bcf2c75f2b925377eb7ce2da90c43a Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 2 Jul 2007 08:05:06 +0000 Subject: [PATCH] PR 4716 * objcopy.c (filter_symbols): Correct relocatable file test. --- binutils/ChangeLog | 5 +++++ binutils/objcopy.c | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/binutils/ChangeLog b/binutils/ChangeLog index 0937aee..574f183 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -1,5 +1,10 @@ 2007-07-02 Alan Modra + PR 4716 + * objcopy.c (filter_symbols): Correct relocatable file test. + +2007-07-02 Alan Modra + * Makefile.am: Run "make dep-am". * Makefile.in: Regenerate. * aclocal.m4: Regenerate. diff --git a/binutils/objcopy.c b/binutils/objcopy.c index 7c5b765..06e2946 100644 --- a/binutils/objcopy.c +++ b/binutils/objcopy.c @@ -910,8 +910,7 @@ filter_symbols (bfd *abfd, bfd *obfd, asymbol **osyms, { asymbol **from = isyms, **to = osyms; long src_count = 0, dst_count = 0; - int relocatable = (abfd->flags & (HAS_RELOC | EXEC_P | DYNAMIC)) - == HAS_RELOC; + int relocatable = (abfd->flags & (EXEC_P | DYNAMIC)) == 0; for (; src_count < symcount; src_count++) { -- 2.7.4