Disable parallel Make execution (#29186)
Ref: https://www.gnu.org/software/make/manual/html_node/Parallel-Disable.html > If the .NOTPARALLEL special target with no prerequisites is specified anywhere then the entire instance of make will be run serially, regardless of the parallel setting (cherry picked from commit 69ed1a4afbc9604cabe83041de31752dd5d101ee) Conflicts: README.md
This commit is contained in:
parent
4f050f358a
commit
800fa60ee5
1 changed files with 5 additions and 0 deletions
5
Makefile
5
Makefile
|
@ -1023,3 +1023,8 @@ docker:
|
||||||
|
|
||||||
# This endif closes the if at the top of the file
|
# This endif closes the if at the top of the file
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Disable parallel execution because it would break some targets that don't
|
||||||
|
# specify exact dependencies like 'backend' which does currently not depend
|
||||||
|
# on 'frontend' to enable Node.js-less builds from source tarballs.
|
||||||
|
.NOTPARALLEL:
|
||||||
|
|
Loading…
Reference in a new issue