aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2017-10-29 01:21:39 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2017-10-29 01:21:39 +0000
commit2aba4f29f9d5b809b30d2aa77c7ca106a40c96d6 (patch)
tree4596a515dcd84b30a6053f152e596ab4b7b71d8b
parent49c9ea8fe526094767d5f6a0968b8fe58ee21583 (diff)
downloadsrc-2aba4f29f9d5b809b30d2aa77c7ca106a40c96d6.tar.gz
src-2aba4f29f9d5b809b30d2aa77c7ca106a40c96d6.zip
lib32/libsoft: Store object files in a more consistent structure.
Having objects in world32 and a sysroot in lib32 was confusing and inconsistent with the normal build. Now objects are stored in obj-lib32 (or obj-libsoft) and the sysroot (analagous to WORLDTMP) is stored in obj-lib32/tmp. Sponsored by: Dell EMC Isilon
Notes
Notes: svn path=/head/; revision=325085
-rw-r--r--Makefile.libcompat4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.libcompat b/Makefile.libcompat
index 43d6273053d6..29319f6dfe7e 100644
--- a/Makefile.libcompat
+++ b/Makefile.libcompat
@@ -79,8 +79,8 @@ LIBCOMPAT${_var}?= ${LIB${LIBCOMPAT}${_var}}
.endfor
# Shared flags
-LIBCOMPAT_OBJTREE?= ${OBJTREE}${.CURDIR}/world${libcompat}
-LIBCOMPATTMP?= ${OBJTREE}${.CURDIR}/lib${libcompat}
+LIBCOMPAT_OBJTREE?= ${OBJTREE}${.CURDIR}/obj-lib${libcompat}
+LIBCOMPATTMP?= ${LIBCOMPAT_OBJTREE}/tmp
LIBCOMPATCFLAGS+= ${LIBCOMPATCPUFLAGS} \
-L${LIBCOMPATTMP}/usr/lib${libcompat} \