Work around the implementation of LIBRARIES_ONLY. It causes drti.o to

not be installed in /usr/lib32 on systems with compat-32 support.

This fix has two parts.  First, the build is forced by linking drti.o
into a dummy internal library.  Second, the object file is installed
manually in the LIBRARIES_ONLY case.

MFC after:	3 days
This commit is contained in:
Brooks Davis 2013-05-07 22:05:57 +00:00
parent 22a962c9fe
commit 168ba1089a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=250337

View file

@ -9,6 +9,8 @@ FILESGRP= ${LIBGRP}
FILESMODE= ${LIBMODE}
FILESDIR= ${LIBDIR}/dtrace
CLEANFILES= ${FILES}
LIB= drti-dummy
INTERNALLIB=
CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \
-I${.CURDIR}/../../../cddl/compat/opensolaris/include \
@ -18,4 +20,10 @@ CFLAGS+= -I${.CURDIR}/../../../sys/cddl/compat/opensolaris \
-I${OPENSOLARIS_SYS_DISTDIR}/uts/common \
-DPIC ${PICFLAG}
.if make(install) && defined(LIBRARIES_ONLY)
install:
${INSTALL} -o ${FILESOWN} -g ${FILESGRP} -m ${FILESMODE} \
${FILES} ${DESTDIR}${FILESDIR}
.endif
.include <bsd.lib.mk>