diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-03 08:26:04 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-03 08:26:04 +0200 |
commit | 77f876c0e3ac08a98daa60fbad44061d4e4c3d14 (patch) | |
tree | 307d7f376167350fa336c4f37d21ee63b62bf40e /dlfcn/Makefile | |
parent | 602252b553031d49c70467bfebcb1ba3bd264501 (diff) | |
download | glibc-77f876c0e3ac08a98daa60fbad44061d4e4c3d14.zip glibc-77f876c0e3ac08a98daa60fbad44061d4e4c3d14.tar.gz glibc-77f876c0e3ac08a98daa60fbad44061d4e4c3d14.tar.bz2 |
dlfcn: Move dlsym into libc
The symbol was moved using scripts/move-symbol-to-libc.py.
In elf/Makefile, remove the $(libdl) dependency from testobj1.so
because it the unused libdl DSO now causes elf/tst-unused-deps to
fail.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'dlfcn/Makefile')
-rw-r--r-- | dlfcn/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dlfcn/Makefile b/dlfcn/Makefile index f079346..b0f2e8a 100644 --- a/dlfcn/Makefile +++ b/dlfcn/Makefile @@ -21,7 +21,7 @@ include ../Makeconfig headers := bits/dlfcn.h dlfcn.h extra-libs := libdl -libdl-routines := dlopen dlsym dlvsym dladdr1 dlinfo \ +libdl-routines := dlopen dlvsym dladdr1 dlinfo \ dlmopen dlfcn routines := $(patsubst %,s%,$(filter-out dlfcn,$(libdl-routines))) elide-routines.os := $(routines) @@ -29,6 +29,7 @@ routines += \ dladdr \ dlclose \ dlerror \ + dlsym \ libc_dlerror_result \ extra-libs-others := libdl |