diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-12-23 23:54:51 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-12-24 01:15:05 +0100 |
commit | 9e8a04984327ffae611165244a159ff9c6ca30f4 (patch) | |
tree | f06bf4d4b1afb2034753188ed946cf48085d88ec /script | |
parent | 0f8f21657dfa4d26d438cb02fb7b5e838a0aa092 (diff) | |
download | samba-9e8a04984327ffae611165244a159ff9c6ca30f4.tar.gz |
tdb: Remove autotools support.
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index a124ddfd787..feb0aee9b7c 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -36,14 +36,12 @@ tasks = { ("test", "TDB_NO_FSYNC=1 make test", "text/plain") ], # We don't use TDB_NO_FSYNC=1 here, because we want to test the transaction code - "lib/tdb" : [ ("autogen", "./autogen-waf.sh", "text/plain"), - ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"), + "lib/tdb" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"), ("make", "make -j", "text/plain"), ("install", "make install", "text/plain"), ("test", "make test", "text/plain") ], - "lib/talloc" : [ ("autogen", "./autogen-waf.sh", "text/plain"), - ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"), + "lib/talloc" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"), ("make", "make -j", "text/plain"), ("install", "make install", "text/plain"), ("test", "make test", "text/plain"), ], |