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 | add8d7ea01d5a22c2d7d184240dda6a7767e54e8 (patch) | |
tree | 22056615da5940658eeb0db5d45bcc370578ebcd /dlfcn/Makefile | |
parent | 6dfc0207ebeb639e47ba7387a9123ed622904cf7 (diff) | |
download | glibc-add8d7ea01d5a22c2d7d184240dda6a7767e54e8.tar.gz glibc-add8d7ea01d5a22c2d7d184240dda6a7767e54e8.tar.xz glibc-add8d7ea01d5a22c2d7d184240dda6a7767e54e8.zip |
dlfcn: Move dlvsym 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 c65cdc2e2b..08d92f85fc 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 \ +libdl-routines := dlopen \ dlfcn routines := $(patsubst %,s%,$(filter-out dlfcn,$(libdl-routines))) elide-routines.os := $(routines) @@ -33,6 +33,7 @@ routines += \ dlinfo \ dlmopen \ dlsym \ + dlvsym \ libc_dlerror_result \ extra-libs-others := libdl |