Date: Fri, 30 Aug 2013 11:41:31 +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: r325670 - head/Mk Message-ID: <201308301141.r7UBfVKw088552@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308301141.r7UBfVKw088552>