1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00

Change WANT_LIB32 to WITH_LIB32. Sorry for the whiplash folks.

It was pointed out to me that the convention we have is to use WITH_
elsewhere in the system, eg: ports etc.  This is all temporary anyway
and presumably will be inverted to a NO_LIB32 or something like it in
the future.
This commit is contained in:
Peter Wemm 2004-11-10 23:31:07 +00:00
parent 1f606ecd84
commit fae9d9992b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=137558

View File

@ -436,7 +436,7 @@ WMAKE_TGTS+= _cleanobj _obj _build-tools
WMAKE_TGTS+= _cross-tools
.endif
WMAKE_TGTS+= _includes _libraries _depend everything
.if ${MACHINE_ARCH} == amd64 && defined(WANT_LIB32)
.if ${MACHINE_ARCH} == amd64 && defined(WITH_LIB32)
WMAKE_TGTS+= build32
.endif
@ -569,7 +569,7 @@ reinstall: ${SPECIAL_INSTALLCHECKS}
@echo ">>> Installing everything"
@echo "--------------------------------------------------------------"
${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install
.if ${MACHINE_ARCH} == amd64 && defined(WANT_LIB32)
.if ${MACHINE_ARCH} == amd64 && defined(WITH_LIB32)
${_+_}cd ${.CURDIR}; ${MAKE} -f Makefile.inc1 install32
.endif