Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 28 Jul 2019 20:27:52 +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: r507530 - head/lang/rust
Message-ID:  <201907282027.x6SKRqN4037095@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Sun Jul 28 20:27:52 2019
New Revision: 507530
URL: https://svnweb.freebsd.org/changeset/ports/507530

Log:
  NOCCACHE also disables setting CCACHE_WRAPPER_PATH which can break the build.

Modified:
  head/lang/rust/Makefile

Modified: head/lang/rust/Makefile
==============================================================================
--- head/lang/rust/Makefile	Sun Jul 28 20:13:27 2019	(r507529)
+++ head/lang/rust/Makefile	Sun Jul 28 20:27:52 2019	(r507530)
@@ -130,7 +130,7 @@ post-patch-SOURCES-off:
 	@${REINPLACE_CMD} -e 's/config.tools.*"src".*/false;/' \
 		${WRKSRC}/src/bootstrap/install.rs
 
-.if defined(WITH_CCACHE_BUILD) && !defined(NO_CCACHE)
+.if defined(WITH_CCACHE_BUILD) && !defined(NO_CCACHE) && !defined(NOCCACHE)
 CCACHE_VALUE=	"${CCACHE_WRAPPER_PATH:C,/libexec/ccache$,,}/bin/ccache"
 .else
 CCACHE_VALUE=	false



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907282027.x6SKRqN4037095>