diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-04-23 08:26:55 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-04-23 08:26:55 +0800 |
commit | 6ef6319f7322229fc70f7d997a7d0a5343b5cc17 (patch) | |
tree | 37200c28a2f8bdaea8f26db51a713593b4d4d844 /CHANGES | |
parent | 4af0aea28fa7586f4cdcb059f3523545dd8683f0 (diff) | |
download | freebsd-ports-gnome-6ef6319f7322229fc70f7d997a7d0a5343b5cc17.tar.gz freebsd-ports-gnome-6ef6319f7322229fc70f7d997a7d0a5343b5cc17.tar.zst freebsd-ports-gnome-6ef6319f7322229fc70f7d997a7d0a5343b5cc17.zip |
- Add WITH_CCACHE_BUILD support during 'configure' phase
- Add CCACHE_DIR
The MAKE_ENV/CONFIGURE_ENV+= method of adding CCACHE_DIR
in /etc/make.conf does not work for many ports since they
overwrite using = instead of appending with +=. By adding
CCACHE_DIR into the ENV variables after reading in the port
the directory is properly set in the environment. Without
this, the ccache support would sometimes work but incorrectly
not respect the set CCACHE_DIR, potentially using 2 caches.
With hat: portmgr
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -10,6 +10,15 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20130422: +AUTHOR: bdrewery@FreeBSD.org + + * The entry for 20120830 to change CCACHE_DIR was not fully supported + by all ports. There is now a CCACHE_DIR variable that can be used + in /etc/make.conf for more complete coverage: + + CCACHE_DIR=/var/cache/ccache + 20130323: AUTHOR: bapt@FreeBSD.org |