svn commit: r325670 - head/Mk

Bryan Drewery bdrewery at FreeBSD.org
Fri Aug 30 11:41:31 UTC 2013


Author: bdrewery
Date: Fri Aug 30 11:41:31 2013
New Revision: 325670
URL: http://svnweb.freebsd.org/changeset/ports/325670

Log:
  - 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

Modified:
  head/Mk/bsd.port.mk

Modified: head/Mk/bsd.port.mk
==============================================================================
--- head/Mk/bsd.port.mk	Fri Aug 30 11:03:49 2013	(r325669)
+++ head/Mk/bsd.port.mk	Fri Aug 30 11:41:31 2013	(r325670)
@@ -2157,7 +2157,7 @@ _CCACHE_PATH=	${LOCALBASE}/libexec/ccach
 
 # 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


More information about the svn-ports-all mailing list