diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-31 21:01:29 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:21 +1000 |
commit | a7386c9625d1f45c609f3ac688dcda62e5f50e2a (patch) | |
tree | bc969645440821bd159a050acb5bc6ac2bed760b /source4 | |
parent | e42a13d1d0a4ea37ada0b0a33d1ce87fde3412b4 (diff) | |
download | samba-a7386c9625d1f45c609f3ac688dcda62e5f50e2a.tar.gz samba-a7386c9625d1f45c609f3ac688dcda62e5f50e2a.tar.bz2 samba-a7386c9625d1f45c609f3ac688dcda62e5f50e2a.zip |
s4-waf: set JOBS=1 during configure.waf
this allows configure to run on AIX, which has broken threading
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/configure.waf | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/configure.waf b/source4/configure.waf index 40dfac6de4..128ac93057 100755 --- a/source4/configure.waf +++ b/source4/configure.waf @@ -4,6 +4,11 @@ echo "Using waf based build" WAF=../buildtools/bin/waf +# using JOBS=1 gives maximum compatibility with +# systems like AIX which have broken threading in python +JOBS=1 +export JOBS + # don't enable WAFCACHE by default till it is # size limited #export WAFCACHE=$HOME/.wafcache |