Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Sep 2012 18:17:21 +0000 (UTC)
From:      Glen Barber <gjb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r240077 - head
Message-ID:  <201209031817.q83IHL47024102@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gjb (doc,ports committer)
Date: Mon Sep  3 18:17:21 2012
New Revision: 240077
URL: http://svn.freebsd.org/changeset/base/240077

Log:
  Fix 'distributeworld' target when WITHOUT_GAMES is set.
  
  Reviewed by:	des
  Approved by:	des
  MFC after:	3 days
  X-MFC-To:	9-only

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Mon Sep  3 17:26:20 2012	(r240076)
+++ head/Makefile.inc1	Mon Sep  3 18:17:21 2012	(r240077)
@@ -636,7 +636,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?201209031817.q83IHL47024102>