aboutsummaryrefslogtreecommitdiffstats
path: root/Mk
diff options
context:
space:
mode:
authorbdrewery <bdrewery@FreeBSD.org>2013-08-30 19:41:31 +0800
committerbdrewery <bdrewery@FreeBSD.org>2013-08-30 19:41:31 +0800
commita1db28eeac43dc77f9bb682be384e98ca588ff77 (patch)
tree58eba15c5b96788995706c06889da52f2932e404 /Mk
parent29f3251f20e6b8833b2912eb298593f92d122898 (diff)
downloadfreebsd-ports-gnome-a1db28eeac43dc77f9bb682be384e98ca588ff77.tar.gz
freebsd-ports-gnome-a1db28eeac43dc77f9bb682be384e98ca588ff77.tar.zst
freebsd-ports-gnome-a1db28eeac43dc77f9bb682be384e98ca588ff77.zip
- Fix WITH_CCACHE_BUILD support on ports that have a *PATH var in their
MAKE_ENV. This only intended to ignore PATH. All of these were not supporting WITH_CCACHE_BUILD and a partial exp-run was done on: audio/fdmf biology/biojava devel/ace games/hex graphics/cimg graphics/inventor graphics/peps graphics/wings graphics/wings-devel lang/python26 lang/python27 lang/python31 lang/python32 lang/python33 lang/siod math/py-basemap math/py-basemap-data multimedia/gpodder multimedia/gstreamer-ffmpeg multimedia/gstreamer1-libav multimedia/handbrake print/py-reportlab print/py-reportlab2 science/ncs science/netcdf4 security/nss textproc/adabrowse x11-toolkits/py-kivy With hat: portmgr
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.port.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 2891367d761c..1642a89ebd5e 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -2157,7 +2157,7 @@ _CCACHE_PATH= ${LOCALBASE}/libexec/ccache
# Prepend the ccache dir into the PATH and setup ccache env
PATH:= ${_CCACHE_PATH}:${PATH}
-.if !${MAKE_ENV:M*PATH=*} && !${CONFIGURE_ENV:M*PATH=*}
+.if !${MAKE_ENV:MPATH=*} && !${CONFIGURE_ENV:MPATH=*}
MAKE_ENV+= PATH=${PATH}
CONFIGURE_ENV+= PATH=${PATH}
.endif