smbd: Remove unused [push_pull]_file_id_24
[samba.git] / configure
blobef80911d944ccde7a262c78f1c9d400d36edccdc
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 . || exit 1
20 $PYTHON $WAF configure "$@" || exit 1
21 cd $PREVPATH