summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2017-07-21 19:54:36 +1200
committerAndreas Schneider <asn@cryptomilk.org>2018-03-22 08:00:25 +0100
commitd9505567554b13c7e5a61284b14ec90b8cb05075 (patch)
tree67eaba02a3d3e0aab2a8c0cdb94185a8e38e7205 /script
parent7964b3640aacaab68f002c290d82f86e7c709268 (diff)
downloadsamba-d9505567554b13c7e5a61284b14ec90b8cb05075.tar.gz
autobuild: Move defaulttasks to one-per-line
Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py16
1 files changed, 15 insertions, 1 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index ebe49bb75cb..fe1a96104fe 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -44,7 +44,21 @@ builddirs = {
"retry" : "."
}
-defaulttasks = [ "ctdb", "samba", "samba-xc", "samba-o3", "samba-ctdb", "samba-libs", "samba-static", "samba-systemkrb5", "samba-nopython", "ldb", "tdb", "talloc", "replace", "tevent", "pidl" ]
+defaulttasks = [ "ctdb",
+ "samba",
+ "samba-xc",
+ "samba-o3",
+ "samba-ctdb",
+ "samba-libs",
+ "samba-static",
+ "samba-systemkrb5",
+ "samba-nopython",
+ "ldb",
+ "tdb",
+ "talloc",
+ "replace",
+ "tevent",
+ "pidl" ]
if os.environ.get("AUTOBUILD_SKIP_SAMBA_O3", "0") == "1":
defaulttasks.remove("samba-o3")