summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2017-01-11 08:14:49 +0100
committerStefan Metzmacher <metze@samba.org>2017-01-12 15:35:13 +0100
commit14d65fbc77cd504237fe924f4c7e63bd47fa3e9f (patch)
treef383d2cecb487d7845634456b52dd413444f6cd2 /script
parentf981e2c9801cab2fbbf8017cd72a9c4987195f10 (diff)
downloadsamba-14d65fbc77cd504237fe924f4c7e63bd47fa3e9f.tar.gz
script/autobuild.py: use --enable-developer and --picky-developer for the ctdb build
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Martin Schwenke <martin@meltin.net>
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 45f449ba027..ead6319de75 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -46,6 +46,7 @@ defaulttasks = [ "ctdb", "samba", "samba-xc", "samba-o3", "samba-ctdb", "samba-l
if os.environ.get("AUTOBUILD_SKIP_SAMBA_O3", "0") == "1":
defaulttasks.remove("samba-o3")
+ctdb_configure_params = " --enable-developer --picky-developer ${PREFIX}"
samba_configure_params = " --picky-developer ${PREFIX} ${EXTRA_PYTHON} --with-profiling-data"
samba_libs_envvars = "PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH"
@@ -62,7 +63,7 @@ else:
tasks = {
"ctdb" : [ ("random-sleep", "../script/random-sleep.sh 60 600", "text/plain"),
- ("configure", "./configure ${PREFIX}", "text/plain"),
+ ("configure", "./configure " + ctdb_configure_params, "text/plain"),
("make", "make all", "text/plain"),
("install", "make install", "text/plain"),
("test", "make autotest", "text/plain"),