summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2012-06-20 10:36:23 +0200
committerStefan Metzmacher <metze@samba.org>2012-06-20 12:58:58 +0200
commitfba51c82f35dae1a406d291614a0920cecef6e8c (patch)
treef1ba522bd62ac2475fc549712bded17fa5cefd08 /script
parentcd260391fae7888de0e6e1be64eebb50f399525b (diff)
downloadsamba-fba51c82f35dae1a406d291614a0920cecef6e8c.tar.gz
samba-fba51c82f35dae1a406d291614a0920cecef6e8c.tar.bz2
samba-fba51c82f35dae1a406d291614a0920cecef6e8c.zip
script/autobuild: don't use make -j for small projects
The top level and source3 builds take much longer than the standalone projects, so there's no need to use 'make -j'. metze
Diffstat (limited to 'script')
-rwxr-xr-xscript/autobuild.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/script/autobuild.py b/script/autobuild.py
index fcdfdb7dd3..817019fc89 100755
--- a/script/autobuild.py
+++ b/script/autobuild.py
@@ -56,27 +56,27 @@ tasks = {
("clean", "make clean", "text/plain") ],
"samba4-libs" : [ ("talloc-configure", "cd lib/talloc && PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=NONE --abi-check --enable-debug -C ${PREFIX}", "text/plain"),
- ("talloc-make", "cd lib/talloc && make -j", "text/plain"),
+ ("talloc-make", "cd lib/talloc && make", "text/plain"),
("talloc-install", "cd lib/talloc && make install", "text/plain"),
("tdb-configure", "cd lib/tdb && PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=NONE --abi-check --enable-debug -C ${PREFIX}", "text/plain"),
- ("tdb-make", "cd lib/tdb && make -j", "text/plain"),
+ ("tdb-make", "cd lib/tdb && make", "text/plain"),
("tdb-install", "cd lib/tdb && make install", "text/plain"),
("tevent-configure", "cd lib/tevent && PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=NONE --abi-check --enable-debug -C ${PREFIX}", "text/plain"),
- ("tevent-make", "cd lib/tevent && make -j", "text/plain"),
+ ("tevent-make", "cd lib/tevent && make", "text/plain"),
("tevent-install", "cd lib/tevent && make install", "text/plain"),
("ldb-configure", "cd lib/ldb && PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=NONE --abi-check --enable-debug -C ${PREFIX}", "text/plain"),
- ("ldb-make", "cd lib/ldb && make -j", "text/plain"),
+ ("ldb-make", "cd lib/ldb && make", "text/plain"),
("ldb-install", "cd lib/ldb && make install", "text/plain"),
("configure", "PYTHONPATH=${PYTHON_PREFIX}/site-packages:$PYTHONPATH PKG_CONFIG_PATH=$PKG_CONFIG_PATH:${PREFIX_DIR}/lib/pkgconfig ./configure --bundled-libraries=!talloc,!tdb,!pytdb,!ldb,!pyldb,!tevent,!pytevent --abi-check --enable-debug -C ${PREFIX}", "text/plain"),
- ("make", "make -j", "text/plain"),
+ ("make", "make", "text/plain"),
("install", "make install", "text/plain")],
"ldb" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
- ("make", "make -j", "text/plain"),
+ ("make", "make", "text/plain"),
("install", "make install", "text/plain"),
("test", "TDB_NO_FSYNC=1 make test", "text/plain"),
("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
@@ -85,7 +85,7 @@ tasks = {
# We don't use TDB_NO_FSYNC=1 here, because we want to test the transaction code
"tdb" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
- ("make", "make -j", "text/plain"),
+ ("make", "make", "text/plain"),
("install", "make install", "text/plain"),
("test", "make test", "text/plain"),
("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
@@ -93,7 +93,7 @@ tasks = {
("clean", "make clean", "text/plain") ],
"ntdb" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
- ("make", "make -j", "text/plain"),
+ ("make", "make", "text/plain"),
("install", "make install", "text/plain"),
("test", "make test", "text/plain"),
("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
@@ -101,7 +101,7 @@ tasks = {
("clean", "make clean", "text/plain") ],
"talloc" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
- ("make", "make -j", "text/plain"),
+ ("make", "make", "text/plain"),
("install", "make install", "text/plain"),
("test", "make test", "text/plain"),
("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
@@ -109,7 +109,7 @@ tasks = {
("clean", "make clean", "text/plain") ],
"replace" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
- ("make", "make -j", "text/plain"),
+ ("make", "make", "text/plain"),
("install", "make install", "text/plain"),
("test", "make test", "text/plain"),
("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),
@@ -117,7 +117,7 @@ tasks = {
("clean", "make clean", "text/plain") ],
"tevent" : [ ("configure", "./configure --enable-developer -C ${PREFIX}", "text/plain"),
- ("make", "make -j", "text/plain"),
+ ("make", "make", "text/plain"),
("install", "make install", "text/plain"),
("test", "make test", "text/plain"),
("check-clean-tree", "../../script/clean-source-tree.sh", "text/plain"),