diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-03 08:26:04 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-03 09:11:45 +0200 |
commit | 6f1c701026287f6928d3bdd1aea7359308635abe (patch) | |
tree | 8dcf3b5a755f131435a912f7629478deaff74264 /nss/Makefile | |
parent | 0c1c3a771eceec46e66ce1183cf988e2303bd373 (diff) | |
download | glibc-6f1c701026287f6928d3bdd1aea7359308635abe.tar.gz glibc-6f1c701026287f6928d3bdd1aea7359308635abe.tar.xz glibc-6f1c701026287f6928d3bdd1aea7359308635abe.zip |
dlfcn: Cleanups after -ldl is no longer required
This commit removes the ELF constructor and internal variables from dlfcn/dlfcn.c. The file now serves the same purpose as nptl/libpthread-compat.c, so it is renamed to dlfcn/libdl-compat.c. The use of libdl-shared-only-routines ensures that libdl.a is empty. This commit adjusts the test suite not to use $(libdl). The libdl.so symbolic link is no longer installed. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nss/Makefile')
-rw-r--r-- | nss/Makefile | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/nss/Makefile b/nss/Makefile index 71fbe583bf..9682a31e20 100644 --- a/nss/Makefile +++ b/nss/Makefile @@ -181,10 +181,5 @@ ifeq (yes,$(have-thread-library)) $(objpfx)tst-cancel-getpwuid_r: $(shared-thread-library) endif -$(objpfx)tst-nss-files-hosts-erange: $(libdl) -$(objpfx)tst-nss-files-hosts-multi: $(libdl) -$(objpfx)tst-nss-files-hosts-getent: $(libdl) -$(objpfx)tst-nss-files-alias-leak: $(libdl) $(objpfx)tst-nss-files-alias-leak.out: $(objpfx)/libnss_files.so -$(objpfx)tst-nss-files-alias-truncated: $(libdl) $(objpfx)tst-nss-files-alias-truncated.out: $(objpfx)/libnss_files.so |