From a3ccf59204c0716be18b1d2d43ad417ce5fd1c06 Mon Sep 17 00:00:00 2001 From: Peter Bee Date: Mon, 15 Aug 2022 13:44:58 +0800 Subject: [PATCH] quickjs/Makefile: pass jobserver status to submake N/A Use +make or $(MAKE) instead of make -C Signed-off-by: Peter Bee --- interpreters/quickjs/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interpreters/quickjs/Makefile b/interpreters/quickjs/Makefile index 6b1f89a90..d4b8ac4c3 100644 --- a/interpreters/quickjs/Makefile +++ b/interpreters/quickjs/Makefile @@ -78,13 +78,13 @@ $(QUICKJS_UNPACK)/.patch: $(QUICKJS_UNPACK) $(Q) touch $(QUICKJS_UNPACK)/.patch build_host: $(QUICKJS_UNPACK)/.patch - make -C $(QUICKJS_UNPACK) \ + $(MAKE) -C $(QUICKJS_UNPACK) \ CONFIG_BIGNUM=$(CONFIG_INTERPRETERS_QUICKJS_BIGNUM) context:: build_host clean:: - $(Q) test ! -d $(QUICKJS_UNPACK) || make -C $(QUICKJS_UNPACK) clean + $(Q) test ! -d $(QUICKJS_UNPACK) || $(MAKE) -C $(QUICKJS_UNPACK) clean distclean:: $(call DELDIR, $(QUICKJS_UNPACK))