svn commit: r330047 - head/Mk
Bryan Drewery
bdrewery at FreeBSD.org
Fri Oct 11 02:22:25 UTC 2013
Author: bdrewery
Date: Fri Oct 11 02:22:24 2013
New Revision: 330047
URL: http://svnweb.freebsd.org/changeset/ports/330047
Log:
- WITH_CCACHE_BUILD: Respect NOCCACHE as well since that is what devel/ccache
has had documented in its howto forever
With hat: portmgr
Modified:
head/Mk/bsd.port.mk
Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk Fri Oct 11 02:20:57 2013 (r330046)
+++ head/Mk/bsd.port.mk Fri Oct 11 02:22:24 2013 (r330047)
@@ -2182,7 +2182,7 @@ BUILD_FAIL_MESSAGE+= Try to set MAKE_JOB
# Support NO_CCACHE for common setups, require WITH_CCACHE_BUILD, and
# don't use if ccache already set in CC
.if !defined(NO_CCACHE) && defined(WITH_CCACHE_BUILD) && !${CC:M*ccache*} && \
- !defined(NO_BUILD)
+ !defined(NO_BUILD) && !defined(NOCCACHE)
# Avoid depends loops between pkg and ccache
. if !${.CURDIR:M*/devel/ccache} && !${.CURDIR:M*/ports-mgmt/pkg}
BUILD_DEPENDS+= ${LOCALBASE}/bin/ccache:${PORTSDIR}/devel/ccache
More information about the svn-ports-all
mailing list