diff options
author | gjb <gjb@FreeBSD.org> | 2016-02-05 21:01:08 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2016-02-05 21:01:08 +0000 |
commit | b0e94739464da6f4e73a5f3e80ec779480d16892 (patch) | |
tree | d202f169da241769452be64ff9d6811a356945a0 /libexec/rtld-elf | |
parent | f6e69cfc784602193b5c513aed5aeba48fb21a80 (diff) | |
download | FreeBSD-src-b0e94739464da6f4e73a5f3e80ec779480d16892.zip FreeBSD-src-b0e94739464da6f4e73a5f3e80ec779480d16892.tar.gz |
Remove libc, librtld_db, libthr packages, and further increase
the constraints on what needs to be installed in a specific to
maintain consistency during upgrades.
Create a new clibs package containing libraries that are needed
as a bare minimum for consistency.
With much help and input from: kib
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'libexec/rtld-elf')
-rw-r--r-- | libexec/rtld-elf/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libexec/rtld-elf/Makefile b/libexec/rtld-elf/Makefile index 66ff5e9..e2ebcce 100644 --- a/libexec/rtld-elf/Makefile +++ b/libexec/rtld-elf/Makefile @@ -5,10 +5,13 @@ # make DEBUG_FLAGS=-g DEBUG=-DDEBUG MK_TESTS=no all .include <src.opts.mk> -PACKAGE= librtld_db +PACKAGE= clibs MK_SSP= no PROG?= ld-elf.so.1 +.if (${PROG:M*ld-elf32*} != "") +TAGS+= lib32 +.endif SRCS= rtld_start.S \ reloc.c rtld.c rtld_lock.c rtld_printf.c map_object.c \ malloc.c xmalloc.c debug.c libmap.c |