diff options
| author | Amitay Isaacs <amitay@gmail.com> | 2014-05-16 00:10:00 +1000 |
|---|---|---|
| committer | Michael Adam <obnox@samba.org> | 2014-06-20 23:38:10 +0200 |
| commit | fb56e72e942830c5ab85614d638743079d2fef46 (patch) | |
| tree | 1c986e9be2fdd45adceff7af9cf1439b41ceb1bb /ctdb/configure | |
| parent | fc71606480f332156f00f590edce14b48ddc60e1 (diff) | |
| download | samba-fb56e72e942830c5ab85614d638743079d2fef46.tar.gz samba-fb56e72e942830c5ab85614d638743079d2fef46.tar.xz samba-fb56e72e942830c5ab85614d638743079d2fef46.zip | |
ctdb-build: Add build files (configure/Makefile) to use waf
Signed-off-by: Amitay Isaacs <amitay@gmail.com>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'ctdb/configure')
| -rwxr-xr-x | ctdb/configure | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ctdb/configure b/ctdb/configure new file mode 100755 index 0000000000..5357de4159 --- /dev/null +++ b/ctdb/configure @@ -0,0 +1,14 @@ +#!/bin/sh + +PREVPATH=`dirname $0` + +WAF=../buildtools/bin/waf + +# using JOBS=1 gives maximum compatibility with +# systems like AIX which have broken threading in python +JOBS=1 +export JOBS + +cd . || exit 1 +${PYTHON:=python} $WAF configure "$@" || exit 1 +cd $PREVPATH |
