diff options
author | Florian Weimer <fweimer@redhat.com> | 2023-05-31 07:35:07 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2023-05-31 07:35:07 +0200 |
commit | b376bb01fb343c4bd9a4ec30604dcd1fcbc04ff1 (patch) | |
tree | 7facf3e7a60ecbaa13eb35c56c76facd4f1a9f12 | |
parent | 65cc53fe7c6556b90159b8c3da1eb283792387db (diff) | |
download | glibc-b376bb01fb343c4bd9a4ec30604dcd1fcbc04ff1.zip glibc-b376bb01fb343c4bd9a4ec30604dcd1fcbc04ff1.tar.gz glibc-b376bb01fb343c4bd9a4ec30604dcd1fcbc04ff1.tar.bz2 |
elf: Remove spurios SHARED conditional from elf/rtld.c
elf/rtld.c is only ever built in SHARED mode.
-rw-r--r-- | elf/rtld.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -2386,10 +2386,8 @@ dl_main (const ElfW(Phdr) *phdr, _dl_relocate_object might need to call `mprotect' for DT_TEXTREL. */ _dl_sysdep_start_cleanup (); -#ifdef SHARED /* Auditing checkpoint: we have added all objects. */ _dl_audit_activity_nsid (LM_ID_BASE, LA_ACT_CONSISTENT); -#endif /* Notify the debugger all new objects are now ready to go. We must re-get the address since by now the variable might be in another object. */ |