Add a stock libmap32.conf for amd64. The first two lines have no effect

except to document the hardcoded standard library search path for 32-bit
binaries.  The third line performs the equivalent substitution for the
private library directory.

Ironically, these entries rely on functionality which is only available
in the COMPAT_32BIT version of rtld-elf.

Approved by:	re (blanket)
This commit is contained in:
Dag-Erling Smørgrav 2013-09-08 09:46:22 +00:00
parent 2442cc585a
commit 773eec475a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=255385
2 changed files with 8 additions and 0 deletions

View File

@ -50,6 +50,10 @@ BIN1= crontab \
syslog.conf \
termcap.small
.if ${MACHINE} == "amd64"
BIN1+= etc.${MACHINE}/libmap32.conf
.endif
.if exists(${.CURDIR}/etc.${MACHINE}/ttys)
BIN1+= etc.${MACHINE}/ttys
.elif exists(${.CURDIR}/etc.${MACHINE_ARCH}/ttys)

View File

@ -0,0 +1,4 @@
# $FreeBSD$
/lib /lib32
/usr/lib /usr/lib32
/usr/lib/private /usr/lib32/private