svn commit: r319399 - head/Mk
Bryan Drewery
bdrewery at FreeBSD.org
Thu May 30 01:06:51 UTC 2013
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}
More information about the svn-ports-all
mailing list