svn commit: r507530 - head/lang/rust

Bryan Drewery bdrewery at FreeBSD.org
Sun Jul 28 20:27:53 UTC 2019


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


More information about the svn-ports-head mailing list