wafsamba: fix pidl dependencies to rebuild on pidl changes
[Samba.git] / ctdb / configure
blob370ddccb6a5630759d21a6292e1c514b139d547b
1 #!/bin/sh
3 PREVPATH=`dirname $0`
5 WAF=buildtools/bin/waf
6 [ -x "$WAF" ] || WAF=../buildtools/bin/waf
8 # using JOBS=1 gives maximum compatibility with
9 # systems like AIX which have broken threading in python
10 JOBS=1
11 export JOBS
13 cd . || exit 1
14 ${PYTHON:=python3} $WAF configure "$@" || exit 1
15 cd $PREVPATH