diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-09-14 20:01:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-09-14 20:02:29 +0200 |
commit | 932ee04999f5f86491eaa35a2359546efc050429 (patch) | |
tree | b53d96922ddf16010137008bb7bb97fd2812b767 /Makefile.in | |
parent | a75cb232c41b9f895e27dd85532ff624f85181de (diff) |
Introduced CHECK_PARALLELISM (and poshed the code up).
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 7b891f8e3fcf..eba483824176 100644 --- a/Makefile.in +++ b/Makefile.in @@ -96,8 +96,10 @@ check: Makefile dmake/dmake@EXEEXT_FOR_BUILD@ fetch cd smoketestoo_native && \ export SAL_USE_VCLPLUGIN="svp" && \ build.pl -P@BUILD_NCPUS@ --all -- -P@BUILD_MAX_JOBS@ - @. ./Env.Host.sh && @GNUMAKE@ -f $$SRC_ROOT/GNUmakefile.mk -r \ - $(if @VERBOSE@,,-s) -j@GMAKE_PARALLELISM@ subsequentcheck + @. ./Env.Host.sh && $(MAKE) -f "$$SRC_ROOT"/GNUmakefile.mk -r \ + $(if @VERBOSE@,,-s) --jobs="$(if \ + $(CHECK_PARALLELISM),$(CHECK_PARALLELISM),@GMAKE_PARALLELISM@)" \ + subsequentcheck id: @. ./Env.Host.sh && \ |