Fix 'distributeworld' target when WITHOUT_GAMES is set.

Reviewed by:	des
Approved by:	des
MFC after:	3 days
X-MFC-To:	9-only
This commit is contained in:
Glen Barber 2012-09-03 18:17:21 +00:00
parent 9828700277
commit 10d2255f3b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=240077

View File

@ -636,7 +636,10 @@ ITOOLS= [ awk cap_mkdb cat chflags chmod chown \
#
# Non-base distributions produced by the base system
EXTRA_DISTRIBUTIONS= doc games
EXTRA_DISTRIBUTIONS= doc
.if ${MK_GAMES} != "no"
EXTRA_DISTRIBUTIONS+= games
.endif
.if defined(LIB32TMP) && ${MK_LIB32} != "no"
EXTRA_DISTRIBUTIONS+= lib32
.endif