From owner-svn-src-stable-9@FreeBSD.ORG Sat Sep 8 04:35:55 2012 Return-Path: Delivered-To: svn-src-stable-9@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 784FD106564A; Sat, 8 Sep 2012 04:35:55 +0000 (UTC) (envelope-from gjb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 63A9A8FC0C; Sat, 8 Sep 2012 04:35:55 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q884ZttL020969; Sat, 8 Sep 2012 04:35:55 GMT (envelope-from gjb@svn.freebsd.org) Received: (from gjb@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q884ZtMO020967; Sat, 8 Sep 2012 04:35:55 GMT (envelope-from gjb@svn.freebsd.org) Message-Id: <201209080435.q884ZtMO020967@svn.freebsd.org> From: Glen Barber Date: Sat, 8 Sep 2012 04:35:55 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r240230 - stable/9 X-BeenThere: svn-src-stable-9@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for only the 9-stable src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 08 Sep 2012 04:35:55 -0000 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