Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Sep 2012 04:35:55 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r240230 - stable/9
Message-ID:  <201209080435.q884ZtMO020967@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201209080435.q884ZtMO020967>