Disable ccache by default

We do dependency management the right way; there should be no need to
use ccache on top of this. Actually, it will just hurt performance to
do so without any win.
This commit is contained in:
Roland Kaufmann 2013-01-23 09:17:41 +01:00
parent 52304ef5e3
commit e10141ba7b

View File

@ -15,6 +15,9 @@ PROCS:=$(shell echo "("$(NUM_CPUS)+1")"/1 | bc)
IONICE:=$(shell test -x "$$(which ionice)" && echo ionice -c2 -n7)
NICE:=$(shell test -x "$$(which nice)" && echo nice)
# we do dependency management the right way; don't attempt to cache
export CCACHE_DISABLE:=1
# ignore that there may be files with these names, we are going to call
# the other make regardless
.PHONY: __everything $(MAKECMDGOALS)