diff options
Diffstat (limited to 'elf')
-rw-r--r-- | elf/Makefile | 2 | ||||
-rw-r--r-- | elf/dl-dst.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/elf/Makefile b/elf/Makefile index 43e622273c..8819c188c0 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -250,7 +250,7 @@ CFLAGS-ldconfig.c = $(SYSCONF-FLAGS) -D'LIBDIR="$(libdir)"' -D'SLIBDIR="$(slibdi CFLAGS-dl-cache.c = $(SYSCONF-FLAGS) CFLAGS-cache.c = $(SYSCONF-FLAGS) -CFLAGS-.os += $(if $(filter $(@F),$(patsubst %,%.os,$(all-rtld-routines))),-D_RTLD_LOCAL) +CFLAGS-.os += $(if $(filter $(@F),$(patsubst %,%.os,$(all-rtld-routines))),-DNOT_IN_libc -DIS_IN_rtld) test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(strip $(modules-names)))) generated += $(addsuffix .so,$(strip $(modules-names))) diff --git a/elf/dl-dst.h b/elf/dl-dst.h index 05bdee5ee9..dc11e360af 100644 --- a/elf/dl-dst.h +++ b/elf/dl-dst.h @@ -64,7 +64,7 @@ extern size_t _dl_dst_count_internal (const char *name, int is_path); extern const char *_dl_get_origin (void); extern const char *_dl_get_origin_internal (void); -#ifdef _RTLD_LOCAL +#ifdef IS_IN_rtld # define _dl_get_origin INTUSE(_dl_get_origin) #endif |