diff options
author | Carlos O'Donell <codonell@redhat.com> | 2013-01-08 11:47:12 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2017-02-09 01:00:55 -0500 |
commit | 2f8847901012150c74678d74e7723472edc3bcd1 (patch) | |
tree | e7d5fd7b2790f3c6c7937d9df1d0822ace87d9f8 | |
parent | fedd527e768b6b90c087d19268f41e7709e527a4 (diff) | |
download | glibc-2f8847901012150c74678d74e7723472edc3bcd1.tar.gz glibc-2f8847901012150c74678d74e7723472edc3bcd1.tar.xz glibc-2f8847901012150c74678d74e7723472edc3bcd1.zip |
rtld: do not ignore arch-specific CFLAGS
https://bugs.gentoo.org/452184 http://sourceware.org/bugzilla/show_bug.cgi?id=15005 http://sourceware.org/ml/libc-alpha/2013-01/msg00247.html
-rw-r--r-- | elf/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index 61abeb59ee..1d27a88f02 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -543,7 +543,7 @@ CFLAGS-ldconfig.c = $(SYSCONF-FLAGS) -D'LIBDIR="$(libdir)"' \ libof-ldconfig = ldconfig CFLAGS-dl-cache.c = $(SYSCONF-FLAGS) CFLAGS-cache.c = $(SYSCONF-FLAGS) -CFLAGS-rtld.c = $(SYSCONF-FLAGS) +CFLAGS-rtld.c += $(SYSCONF-FLAGS) cpp-srcs-left := $(all-rtld-routines:=.os) lib := rtld |