From owner-svn-ports-head@FreeBSD.ORG Thu May 30 01:06:51 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CA3D1453; Thu, 30 May 2013 01:06:51 +0000 (UTC) (envelope-from bdrewery@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id BBD3691C; Thu, 30 May 2013 01:06:51 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.6/8.14.6) with ESMTP id r4U16pCn034723; Thu, 30 May 2013 01:06:51 GMT (envelope-from bdrewery@svn.freebsd.org) Received: (from bdrewery@localhost) by svn.freebsd.org (8.14.6/8.14.5/Submit) id r4U16p48034721; Thu, 30 May 2013 01:06:51 GMT (envelope-from bdrewery@svn.freebsd.org) Message-Id: <201305300106.r4U16p48034721@svn.freebsd.org> From: Bryan Drewery Date: Thu, 30 May 2013 01:06:51 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319399 - head/Mk X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 May 2013 01:06:51 -0000 Author: bdrewery Date: Thu May 30 01:06:51 2013 New Revision: 319399 URL: http://svnweb.freebsd.org/changeset/ports/319399 Log: Fix build when WITH_CCACHE_BUILD is set. The problem is that WITH_CCACHE_BUILD adds PATH to the MAKE_ENV, but the gnustep support sources a GNUStep.sh file that already sets the PATH. Next when env PATH=... is called, it overwrites and losers the gnustep PATH additions. This is a temporary fix until a better solution is found. Modified: head/Mk/bsd.gnustep.mk Modified: head/Mk/bsd.gnustep.mk ============================================================================== --- head/Mk/bsd.gnustep.mk Wed May 29 23:43:55 2013 (r319398) +++ head/Mk/bsd.gnustep.mk Thu May 30 01:06:51 2013 (r319399) @@ -484,6 +484,7 @@ RUN_DEPENDS+= ${GNUSTEP_LOCAL_SERVICES}/ # source GNUstep.sh # .if defined(USE_GNUSTEP_CONFIGURE) +NO_CCACHE= Overrides PATH set from GNUstep.sh run-autotools:: @${DO_NADA} @@ -508,6 +509,7 @@ do-configure: # source GNUstep.sh # .if defined(USE_GNUSTEP_BUILD) +NO_CCACHE= Overrides PATH set from GNUstep.sh do-build: .if defined(USE_GNUSTEP_MAKE_DIRS) .for i in ${USE_GNUSTEP_MAKE_DIRS}