From: Ian Lance Taylor Date: Fri, 17 Feb 1995 20:42:22 +0000 (+0000) Subject: --set-section-flags patch from dje. X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=842eba6688d36ea2752e66de0958df3e7af2c004;p=deliverable%2Fbinutils-gdb.git --set-section-flags patch from dje. --- diff --git a/binutils/objcopy.c b/binutils/objcopy.c index 75961543e7..86232ad955 100644 --- a/binutils/objcopy.c +++ b/binutils/objcopy.c @@ -1029,10 +1029,9 @@ setup_section (ibfd, isection, obfdarg) goto loser; } + flags = bfd_get_section_flags (ibfd, isection); if (p != NULL && p->set_flags) - flags = p->flags; - else - flags = bfd_get_section_flags (ibfd, isection); + flags = p->flags | (flags & SEC_HAS_CONTENTS); if (!bfd_set_section_flags (obfd, osection, flags)) { err = "flags";