diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-03-01 01:53:49 +0100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-03-01 06:22:07 +0100 |
commit | dbf6b481e9be61287d5c82d23b581ca4bfd09865 (patch) | |
tree | 2d0cf8cb909dec3b1c6ffb9ca852ac8636a4321f /script/autobuild.py | |
parent | 5f5ca913b7abfcf95782339fac2dc8c1541b1126 (diff) | |
download | samba-dbf6b481e9be61287d5c82d23b581ca4bfd09865.tar.gz samba-dbf6b481e9be61287d5c82d23b581ca4bfd09865.tar.xz samba-dbf6b481e9be61287d5c82d23b581ca4bfd09865.zip |
autobuild: enabled samba3-waf build
this is just a build check for now. See the mailing list discussion.
Autobuild-User: Andrew Tridgell <tridge@samba.org>
Autobuild-Date: Tue Mar 1 06:22:07 CET 2011 on sn-devel-104
Diffstat (limited to 'script/autobuild.py')
-rwxr-xr-x | script/autobuild.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index c6e965e69e..47751435e3 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -18,6 +18,7 @@ os.environ['CC'] = "ccache gcc" builddirs = { "samba3" : "source3", + "samba3-waf": "source3", "samba4" : ".", "ldb" : "source4/lib/ldb", "tdb" : "lib/tdb", @@ -30,7 +31,7 @@ builddirs = { "retry" : "." } -defaulttasks = [ "samba3", "samba4", "ldb", "tdb", "talloc", "replace", "tevent", "pidl" ] +defaulttasks = [ "samba3", "samba3-waf", "samba4", "ldb", "tdb", "talloc", "replace", "tevent", "pidl" ] tasks = { "samba3" : [ ("autogen", "./autogen.sh", "text/plain"), @@ -42,6 +43,12 @@ tasks = { ("check-clean-tree", "../script/clean-source-tree.sh", "text/plain"), ("clean", "make clean", "text/plain") ], + "samba3-waf" : [ ("autogen", "./autogen-waf.sh", "text/plain"), + ("configure", "./configure.developer ${PREFIX}", "text/plain"), + ("make", "make -j", "text/plain"), + ("install", "make install", "text/plain"), + ("clean", "make clean", "text/plain") ], + # We have 'test' before 'install' because, 'test' should work without 'install' "samba4" : [ ("configure", "./configure.developer ${PREFIX}", "text/plain"), ("make", "make -j", "text/plain"), |