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 | 6dfc0207ebeb639e47ba7387a9123ed622904cf7 (patch) | |
tree | 2206f40e0eaf0c3386bc31334668857f6c39967d /dlfcn/Makefile | |
parent | 492560a32e14c9a985274e1995b67a577197261e (diff) | |
download | glibc-6dfc0207ebeb639e47ba7387a9123ed622904cf7.tar.gz glibc-6dfc0207ebeb639e47ba7387a9123ed622904cf7.tar.xz glibc-6dfc0207ebeb639e47ba7387a9123ed622904cf7.zip |
dlfcn: Move dlinfo into libc
The symbol was moved using scripts/move-symbol-to-libc.py. 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 1dfa247538..c65cdc2e2b 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 dlvsym dlinfo \ +libdl-routines := dlopen dlvsym \ dlfcn routines := $(patsubst %,s%,$(filter-out dlfcn,$(libdl-routines))) elide-routines.os := $(routines) @@ -30,6 +30,7 @@ routines += \ dladdr1 \ dlclose \ dlerror \ + dlinfo \ dlmopen \ dlsym \ libc_dlerror_result \ |