s3:rpc_server: Initialize array
[Samba.git] / buildtools / scripts / configure.waf
blobccb62849a54f49e3c3d41f92a7581bf9c042a694
1 #!/bin/sh
3 PREVPATH=$(dirname $0)
5 WAF=BUILDTOOLS/bin/waf
7 # using JOBS=1 gives maximum compatibility with
8 # systems like AIX which have broken threading in python
9 JOBS=1
10 export JOBS
12 # Make sure we don't have any library preloaded.
13 unset LD_PRELOAD
15 # Make sure we get stable hashes
16 PYTHONHASHSEED=1
17 export PYTHONHASHSEED
19 cd BUILDPATH || exit 1
20 $PYTHON $WAF configure "$@" || exit 1
21 cd $PREVPATH