diff options
author | Roland McGrath <roland@hack.frob.com> | 2015-02-06 10:42:08 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2015-02-06 10:42:08 -0800 |
commit | ac9e0e5e401fa634667a8284a0db0ca886bf816b (patch) | |
tree | 613958b3c5ccaa2f5413aff2a2c904196f2209e6 /elf/Makefile | |
parent | ebda2f17ffc735f7daa67f752ec454b3f305e392 (diff) | |
download | glibc-ac9e0e5e401fa634667a8284a0db0ca886bf816b.zip glibc-ac9e0e5e401fa634667a8284a0db0ca886bf816b.tar.gz glibc-ac9e0e5e401fa634667a8284a0db0ca886bf816b.tar.bz2 |
Clean up sysdep-dl-routines variable.
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/Makefile b/elf/Makefile index e5b142c..f2d1781 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -22,7 +22,7 @@ subdir := elf include ../Makeconfig headers = elf.h bits/elfclass.h link.h bits/link.h -routines = $(dl-routines) dl-support dl-iteratephdr \ +routines = $(all-dl-routines) dl-support dl-iteratephdr \ dl-addr enbl-secure dl-profstub \ dl-origin dl-libc dl-sym dl-tsd dl-sysdep @@ -43,7 +43,7 @@ shared-only-routines += dl-caller # ld.so uses those routines, plus some special stuff for being the program # interpreter and operating independent of libc. -rtld-routines := rtld $(dl-routines) dl-sysdep dl-environ dl-minimal +rtld-routines = rtld $(all-dl-routines) dl-sysdep dl-environ dl-minimal all-rtld-routines = $(rtld-routines) $(sysdep-rtld-routines) CFLAGS-dl-runtime.c = -fexceptions -fasynchronous-unwind-tables |