From: Andrew Bartlett Date: Fri, 21 Jul 2017 07:54:36 +0000 (+1200) Subject: autobuild: Move defaulttasks to one-per-line X-Git-Tag: talloc-2.1.13~289 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d9505567554b13c7e5a61284b14ec90b8cb05075;p=thirdparty%2Fsamba.git autobuild: Move defaulttasks to one-per-line Signed-off-by: Andrew Bartlett Reviewed-by: Andreas Schneider --- 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")