guard against MK_SHARED_TOOLCHAIN not being defined.

This commit is contained in:
Xin LI 2013-05-16 22:35:33 +00:00
parent ac2c0328ca
commit f26784139f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=250722

View File

@ -11,7 +11,7 @@
PROG= make
.endif
.if ${MK_SHARED_TOOLCHAIN} == "no"
.if !defined(MK_SHARED_TOOLCHAIN) || ${MK_SHARED_TOOLCHAIN} == "no"
NO_SHARED?= YES
.endif