diff options
author | Andrew Yourtchenko <ayourtch@gmail.com> | 2020-02-07 12:58:00 +0100 |
---|---|---|
committer | Juraj Linkeš <juraj.linkes@pantheon.tech> | 2020-06-09 07:20:05 +0000 |
commit | 7a071e3704c4b2094cb1a87d236aa476d8a171d4 (patch) | |
tree | a42cb87ebca6ee3048002e56c8e4ad2778c42fb9 | |
parent | a54a9efce7f2efe7cc55565d74736d167f8e74b0 (diff) |
misc: fix the MAKE_PARALLEL_JOBS for 'make verify' target
MAKE_PARALLEL_JOBS was prepending "-j", which in case of nested targets like "verify"
resulted in ninja being executed with "-j -j" flags.
Solution: prepend -j only at the moment of setting the MAKE_PARALLEL_FLAGS variable,
this keeps MAKE_PARALLEL_JOBS intact regardless of depth of the job call tree.
Type: make
Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
Change-Id: I10a69fe527758e5a862852a9f2102aeaca30e88f
(cherry picked from commit 56ac770df97065ea705ff2f3070055a410113b9f)
-rw-r--r-- | build-root/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/build-root/Makefile b/build-root/Makefile index d810abb8626..4a675d6019b 100644 --- a/build-root/Makefile +++ b/build-root/Makefile @@ -653,12 +653,10 @@ configure_check_timestamp = \ # NB: GNU Make 4.2 will let us use '$(file </proc/cpuinfo)' to both test # for file presence and content; for now this will have to do. ifndef MAKE_PARALLEL_JOBS -MAKE_PARALLEL_JOBS = -j $(if $(shell [ -f /proc/cpuinfo ] && head /proc/cpuinfo), \ +MAKE_PARALLEL_JOBS = $(if $(shell [ -f /proc/cpuinfo ] && head /proc/cpuinfo), \ $(shell grep -c ^processor /proc/cpuinfo), 2) -else -MAKE_PARALLEL_JOBS := -j $(MAKE_PARALLEL_JOBS) endif -MAKE_PARALLEL_FLAGS ?= $(if $($(PACKAGE)_make_parallel_fails),,$(MAKE_PARALLEL_JOBS)) +MAKE_PARALLEL_FLAGS ?= $(if $($(PACKAGE)_make_parallel_fails),,-j $(MAKE_PARALLEL_JOBS)) # Make command shorthand for packages & tools. PACKAGE_MAKE = \ |