svn commit: r240230 - stable/9

Glen Barber gjb at FreeBSD.org
Sat Sep 8 04:35:55 UTC 2012


Author: gjb (doc,ports committer)
Date: Sat Sep  8 04:35:54 2012
New Revision: 240230
URL: http://svn.freebsd.org/changeset/base/240230

Log:
  MFC r240077:
  -   Fix 'distributeworld' target when WITHOUT_GAMES is set.

Modified:
  stable/9/Makefile.inc1   (contents, props changed)

Modified: stable/9/Makefile.inc1
==============================================================================
--- stable/9/Makefile.inc1	Sat Sep  8 03:11:02 2012	(r240229)
+++ stable/9/Makefile.inc1	Sat Sep  8 04:35:54 2012	(r240230)
@@ -640,7 +640,10 @@ ITOOLS=	[ awk cap_mkdb cat chflags chmod
 #
 
 # 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


More information about the svn-src-all mailing list