From 800fa60ee577eaa2e26f91cbea2534c20c2bcd09 Mon Sep 17 00:00:00 2001 From: silverwind Date: Fri, 16 Feb 2024 04:17:34 +0100 Subject: [PATCH] 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 --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 6d75494390..ffffb1faf0 100644 --- a/Makefile +++ b/Makefile @@ -1023,3 +1023,8 @@ docker: # This endif closes the if at the top of the file 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: