aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorBryan Drewery <bdrewery@FreeBSD.org>2013-04-23 00:26:55 +0000
committerBryan Drewery <bdrewery@FreeBSD.org>2013-04-23 00:26:55 +0000
commit4292fecc2eac408172e79b8a6e0aedfb2c4a19f7 (patch)
tree37200c28a2f8bdaea8f26db51a713593b4d4d844 /CHANGES
parented86e312623ea44a607b1d4ee22805f6ede4d1e8 (diff)
downloadports-4292fecc2eac408172e79b8a6e0aedfb2c4a19f7.tar.gz
ports-4292fecc2eac408172e79b8a6e0aedfb2c4a19f7.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
Notes
Notes: svn path=/head/; revision=316289
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 9193e34427a5..bd8462e49b47 100644
--- a/CHANGES
+++ b/CHANGES
@@ -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