summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-12-23 23:54:51 +0100
committerJelmer Vernooij <jelmer@samba.org>2010-12-24 01:15:05 +0100
commit9e8a04984327ffae611165244a159ff9c6ca30f4 (patch)
treef06bf4d4b1afb2034753188ed946cf48085d88ec /script
parent0f8f21657dfa4d26d438cb02fb7b5e838a0aa092 (diff)
downloadsamba-9e8a04984327ffae611165244a159ff9c6ca30f4.tar.gz
samba-9e8a04984327ffae611165244a159ff9c6ca30f4.tar.bz2
samba-9e8a04984327ffae611165244a159ff9c6ca30f4.zip
tdb: Remove autotools support.
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index a124ddfd78..feb0aee9b7 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"), ],