Date: Thu, 30 May 2013 01:06:51 +0000 (UTC) From: Bryan Drewery <bdrewery@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r319399 - head/Mk Message-ID: <201305300106.r4U16p48034721@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305300106.r4U16p48034721>