From ecfa3fd6800e3492ffa3984f7b7644bf9d26b2fd Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 18 Mar 2010 15:11:30 +1100 Subject: build: disable WAFCACHE by default It doesn't have a size limiting mechanism yet, so don't use it by default ot it could cause havoc in the build farm --- source4/Makefile.waf | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/source4/Makefile.waf b/source4/Makefile.waf index d3042b0522..8d5e7455ed 100644 --- a/source4/Makefile.waf +++ b/source4/Makefile.waf @@ -1,5 +1,11 @@ -# very crude Makefile to run waf -WAF=WAFCACHE=$(HOME)/.wafcache ../buildtools/waf +# simple makefile wrapper to run waf + +# don't enable WAFCACHE by default yet, as it doesn't +# have any way to limit its size. This could cause +# problems in the build farm +# WAF=WAFCACHE=$(HOME)/.wafcache ../buildtools/waf + +WAF=../buildtools/waf all: $(WAF) build -- cgit