diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-01-11 10:54:28 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-01-11 01:23:05 +0100 |
commit | af91d318606b609e08c25ac5eaf420d4b236d6c2 (patch) | |
tree | dbc2c64606094a05bb3065c7cb5e4adcc03ff2f2 /script/autobuild.py | |
parent | 9814894dafb9a2b7f7247db22c3e0c347ffe916c (diff) | |
download | samba-af91d318606b609e08c25ac5eaf420d4b236d6c2.tar.gz |
autobuild: added "make distcheck" for our libs
this ensures that release creation always works
Diffstat (limited to 'script/autobuild.py')
-rwxr-xr-x | script/autobuild.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index 3b11b39b5e6..a1f8a5c9e96 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -39,6 +39,7 @@ tasks = { ("install", "make install", "text/plain"), ("test", "TDB_NO_FSYNC=1 make test", "text/plain"), ("check-clean-tree", "../../../script/clean-source-tree.sh", "text/plain"), + ("distcheck", "make distcheck", "text/plain"), ("clean", "make clean", "text/plain") ], # We don't use TDB_NO_FSYNC=1 here, because we want to test the transaction code @@ -47,6 +48,7 @@ tasks = { ("install", "make install", "text/plain"), ("test", "make test", "text/plain"), ("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"), + ("distcheck", "make distcheck", "text/plain"), ("clean", "make clean", "text/plain") ], "lib/talloc" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"), @@ -54,6 +56,7 @@ tasks = { ("install", "make install", "text/plain"), ("test", "make test", "text/plain"), ("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"), + ("distcheck", "make distcheck", "text/plain"), ("clean", "make clean", "text/plain") ], "lib/replace" : [ ("autogen", "./autogen-waf.sh", "text/plain"), @@ -62,6 +65,7 @@ tasks = { ("install", "make install", "text/plain"), ("test", "make test", "text/plain"), ("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"), + ("distcheck", "make distcheck", "text/plain"), ("clean", "make clean", "text/plain") ], "lib/tevent" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"), @@ -69,6 +73,7 @@ tasks = { ("install", "make install", "text/plain"), ("test", "make test", "text/plain"), ("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"), + ("distcheck", "make distcheck", "text/plain"), ("clean", "make clean", "text/plain") ], "pidl" : [ ("configure", "perl Makefile.PL PREFIX=${PREFIX_DIR}", "text/plain"), |