svn commit: r514245 - head/graphics/rawtherapee

Bryan Drewery bdrewery at FreeBSD.org
Thu Oct 10 20:04:12 UTC 2019


Author: bdrewery
Date: Thu Oct 10 20:04:11 2019
New Revision: 514245
URL: https://svnweb.freebsd.org/changeset/ports/514245

Log:
  - Respect NOCCACHE
  - Use proper path to CCACHE. It cannot be assumed to be in LOCALBASE
    as CCACHE_WRAPPER_PATH is used to override it.

Modified:
  head/graphics/rawtherapee/Makefile

Modified: head/graphics/rawtherapee/Makefile
==============================================================================
--- head/graphics/rawtherapee/Makefile	Thu Oct 10 19:51:10 2019	(r514244)
+++ head/graphics/rawtherapee/Makefile	Thu Oct 10 20:04:11 2019	(r514245)
@@ -73,9 +73,9 @@ INSTALLS_ICONS=	yes
 CMAKE_ARGS+=	-DPROC_TARGET_NUMBER="1"
 .endif
 
-.if "${WITH_CCACHE_BUILD}" == "yes" && !defined(NO_CCACHE) 
-CMAKE_ARGS+=	-DCMAKE_C_COMPILER_LAUNCHER=${LOCALBASE}/bin/ccache \
-		-DCMAKE_CXX_COMPILER_LAUNCHER=${LOCALBASE}/bin/ccache
+.if "${WITH_CCACHE_BUILD}" == "yes" && !defined(NO_CCACHE) && !defined(NOCCACHE)
+CMAKE_ARGS+=	-DCMAKE_C_COMPILER_LAUNCHER=${CCACHE_WRAPPER_PATH:C,/libexec/ccache$,,}/bin/ccache \
+		-DCMAKE_CXX_COMPILER_LAUNCHER=${CCACHE_WRAPPER_PATH:C,/libexec/ccache$,,}/bin/ccache
 .endif
 
 RTDIR=		${PREFIX}/libdata/${PORTNAME}


More information about the svn-ports-head mailing list