From 2129bd01d3356e8f7e61919cfb760f9f857ada63 Mon Sep 17 00:00:00 2001 From: jakecastelli <38635403+jakecastelli@users.noreply.github.com> Date: Sat, 8 Jun 2024 10:38:22 +0930 Subject: [PATCH] build: fix spacing before NINJA_ARGS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/53181 Fixes: https://github.com/nodejs/node/issues/53176 Refs: https://github.com/nodejs/node/issues/53176 Reviewed-By: Yagiz Nizipli Reviewed-By: Michaël Zasso Reviewed-By: Luigi Pinca Reviewed-By: Vinícius Lourenço Claro Cardoso --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4af59e7336e410c..81a92cfaf6dc9b5 100644 --- a/Makefile +++ b/Makefile @@ -147,7 +147,7 @@ ifdef JOBS NINJA_ARGS := $(NINJA_ARGS) -j$(JOBS) else IMMEDIATE_NINJA_ARGS := $(NINJA_ARGS) - NINJA_ARGS = $(IMMEDIATE_NINJA_ARGS) $(filter -j%,$(MAKEFLAGS)) + NINJA_ARGS = $(filter -j%,$(MAKEFLAGS))$(IMMEDIATE_NINJA_ARGS) endif $(NODE_EXE): config.gypi out/Release/build.ninja $(NINJA) -C out/Release $(NINJA_ARGS)