From 0c1c3a771eceec46e66ce1183cf988e2303bd373 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Thu, 3 Jun 2021 08:26:04 +0200 Subject: dlfcn: Move dlopen into libc The symbol was moved using scripts/move-symbol-to-libc.py. Reviewed-by: Adhemerval Zanella --- dlfcn/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dlfcn/Makefile') diff --git a/dlfcn/Makefile b/dlfcn/Makefile index 08d92f85fc..a471d86071 100644 --- a/dlfcn/Makefile +++ b/dlfcn/Makefile @@ -21,8 +21,7 @@ include ../Makeconfig headers := bits/dlfcn.h dlfcn.h extra-libs := libdl -libdl-routines := dlopen \ - dlfcn +libdl-routines := dlfcn routines := $(patsubst %,s%,$(filter-out dlfcn,$(libdl-routines))) elide-routines.os := $(routines) routines += \ @@ -32,6 +31,7 @@ routines += \ dlerror \ dlinfo \ dlmopen \ + dlopen \ dlsym \ dlvsym \ libc_dlerror_result \ @@ -39,8 +39,8 @@ routines += \ extra-libs-others := libdl ifeq ($(build-shared),yes) -libdl-routines += dlopenold -libdl-shared-only-routines := dlopenold dlfcn +routines += dlopenold +shared-only-routines := dlopenold dlfcn endif ifeq (yes,$(build-shared)) -- cgit v1.2.1