stand: fix WITHOUT_FORTH/WITHOUT_LOADER_LUA build

Previously having ficl/liblua in LIB32LIST with their respective option
turned OFF would be relatively harmless, as we wouldn't act on it unless we
were building the non-32 variant. As of ac5f382a9d, however, these are
now used for dependencies in some cases and must reflect what's actually
going to be built.
This commit is contained in:
Kyle Evans 2021-01-01 00:22:48 -06:00
parent b58a46347c
commit 8b4c3a03f9

View File

@ -6,7 +6,13 @@
# others we don't. LIB32LIST is a list of libraries, which if
# included, need to be built 32-bit as well.
.if ${MACHINE_ARCH} == "amd64"
LIB32LIST=libsa ficl liblua
LIB32LIST=libsa
.if ${MK_FORTH} != "no"
LIB32LIST+= ficl
.endif
.if ${MK_LOADER_LUA} != "no"
LIB32LIST+= liblua
.endif
.endif
S.yes+= libsa