X-Git-Url: http://git.samba.org/samba.git/?p=vlendec%2Fsamba-autobuild%2F.git;a=blobdiff_plain;f=ctdb%2Fconfigure;h=dbb0c1446b512d3fd85864d9b9b5272f46fd8a91;hp=5357de415987db927a615c764732e3e5661c46b9;hb=refs%2Fheads%2Fmaster;hpb=fb56e72e942830c5ab85614d638743079d2fef46 diff --git a/ctdb/configure b/ctdb/configure index 5357de41598..48b786b1612 100755 --- a/ctdb/configure +++ b/ctdb/configure @@ -2,13 +2,21 @@ PREVPATH=`dirname $0` -WAF=../buildtools/bin/waf +WAF=buildtools/bin/waf +[ -x "$WAF" ] || WAF=../buildtools/bin/waf # using JOBS=1 gives maximum compatibility with # systems like AIX which have broken threading in python JOBS=1 export JOBS +# Make sure we don't have any library preloaded. +unset LD_PRELOAD + +# Make sure we get stable hashes +PYTHONHASHSEED=1 +export PYTHONHASHSEED + cd . || exit 1 -${PYTHON:=python} $WAF configure "$@" || exit 1 +$PYTHON $WAF configure "$@" || exit 1 cd $PREVPATH