diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-18 15:11:30 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:52 +1000 |
commit | ecfa3fd6800e3492ffa3984f7b7644bf9d26b2fd (patch) | |
tree | f1750043eea2c510ab0f311a803c6b9504d6c5e2 | |
parent | ca4e64847c7623a3eb7f13c4a06b8c4302d18cd8 (diff) | |
download | samba-ecfa3fd6800e3492ffa3984f7b7644bf9d26b2fd.tar.gz samba-ecfa3fd6800e3492ffa3984f7b7644bf9d26b2fd.tar.bz2 samba-ecfa3fd6800e3492ffa3984f7b7644bf9d26b2fd.zip |
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
-rw-r--r-- | source4/Makefile.waf | 10 |
1 files 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 |