summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorThomas Nagy <tnagy@waf.io>2017-04-13 18:47:50 +0200
committerAndrew Bartlett <abartlet@samba.org>2018-09-05 06:37:21 +0200
commit59673353877569a163a95ccf9cf6730c0099e772 (patch)
treeb6ca15142c547ce3d9b457c925ddb74cf01fe938 /script
parent9aa8f2badd660d4ec464d052a0a2ca84387aad88 (diff)
downloadsamba-59673353877569a163a95ccf9cf6730c0099e772.tar.gz
script/autobuild: use --out instead of -b when calling configure
Signed-off-by: Thomas Nagy <tnagy@waf.io> Reviewed-by: Alexander Bokovoy <ab@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 3f1bfd5fbac..c569f9de122 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -175,9 +175,9 @@ tasks = {
# Test cross-compile infrastructure
"samba-xc": [("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),
("configure-native", "./configure.developer --with-selftest-prefix=./bin/ab" + samba_configure_params, "text/plain"),
- ("configure-cross-execute", "./configure.developer -b ./bin-xe --cross-compile --cross-execute=script/identity_cc.sh" \
+ ("configure-cross-execute", "./configure.developer --out ./bin-xe --cross-compile --cross-execute=script/identity_cc.sh" \
" --cross-answers=./bin-xe/cross-answers.txt --with-selftest-prefix=./bin-xe/ab" + samba_configure_params, "text/plain"),
- ("configure-cross-answers", "./configure.developer -b ./bin-xa --cross-compile" \
+ ("configure-cross-answers", "./configure.developer --out ./bin-xa --cross-compile" \
" --cross-answers=./bin-xe/cross-answers.txt --with-selftest-prefix=./bin-xa/ab" + samba_configure_params, "text/plain"),
("compare-results", "script/compare_cc_results.py ./bin/c4che/default.cache.py ./bin-xe/c4che/default.cache.py ./bin-xa/c4che/default.cache.py", "text/plain")],