summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-06-20 13:22:18 +0200
committerMichael Adam <obnox@samba.org>2012-06-21 23:49:19 +0200
commita24d78d344b581f4efa1b78d334f4c6ada882a50 (patch)
treea3f18fb77bbb2ef987c362c8b2489b525099c8e3 /script
parenta518648beaa96765769ee6d3d0c9a62c2ca19ab2 (diff)
downloadsamba-a24d78d344b581f4efa1b78d334f4c6ada882a50.tar.gz
samba-a24d78d344b581f4efa1b78d334f4c6ada882a50.tar.bz2
samba-a24d78d344b581f4efa1b78d334f4c6ada882a50.zip
autobuild: rename the "samba4" target to "samba"
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index 8bdb281bbd..30630a8493 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -17,7 +17,7 @@ cleanup_list = []
builddirs = {
"samba3" : "source3",
- "samba4" : ".",
+ "samba" : ".",
"samba4-libs" : ".",
"ldb" : "lib/ldb",
"tdb" : "lib/tdb",
@@ -31,7 +31,7 @@ builddirs = {
"retry" : "."
}
-defaulttasks = [ "samba3", "samba4", "samba4-libs", "ldb", "tdb", "ntdb", "talloc", "replace", "tevent", "pidl" ]
+defaulttasks = [ "samba3", "samba", "samba4-libs", "ldb", "tdb", "ntdb", "talloc", "replace", "tevent", "pidl" ]
tasks = {
"samba3" : [ ("autogen", "./autogen.sh", "text/plain"),
@@ -48,12 +48,12 @@ tasks = {
("clean", "make clean", "text/plain") ],
# We have 'test' before 'install' because, 'test' should work without 'install'
- "samba4" : [ ("configure", "./configure.developer ${PREFIX} --with-selftest-prefix=./bin/ab", "text/plain"),
- ("make", "make -j", "text/plain"),
- ("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain"),
- ("install", "make install", "text/plain"),
- ("check-clean-tree", "script/clean-source-tree.sh", "text/plain"),
- ("clean", "make clean", "text/plain") ],
+ "samba" : [ ("configure", "./configure.developer ${PREFIX} --with-selftest-prefix=./bin/ab", "text/plain"),
+ ("make", "make -j", "text/plain"),
+ ("test", "TDB_NO_FSYNC=1 make test FAIL_IMMEDIATELY=1", "text/plain"),
+ ("install", "make install", "text/plain"),
+ ("check-clean-tree", "script/clean-source-tree.sh", "text/plain"),
+ ("clean", "make clean", "text/plain") ],
"samba4-libs" : [
("random-sleep", "script/random-sleep.sh 60 600", "text/plain"),