From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 10 Nov 2023 09:56:01 +0100 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1r1NJ3-005aEH-0d for lore@lore.pengutronix.de; Fri, 10 Nov 2023 09:56:01 +0100 Received: from localhost ([127.0.0.1] helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1r1NJ3-0006Nk-IV; Fri, 10 Nov 2023 09:56:01 +0100 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1r1NIu-0006NX-Bo; Fri, 10 Nov 2023 09:55:52 +0100 Received: from [2a0a:edc0:0:1101:1d::54] (helo=dude05.red.stw.pengutronix.de) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1r1NIt-007yj9-RF; Fri, 10 Nov 2023 09:55:51 +0100 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1r1NIt-00Csky-2Z; Fri, 10 Nov 2023 09:55:51 +0100 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Fri, 10 Nov 2023 09:55:49 +0100 Message-Id: <20231110085549.3070384-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <17cbff84-d77c-4dce-9a7c-b45b1055f693@app.fastmail.com> References: <17cbff84-d77c-4dce-9a7c-b45b1055f693@app.fastmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH] nodejs: explicitly call configure with 'python3' X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Michael Olbrich Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false This will result in explicitly using the system Python. Otherwise host-python may be used instead and it may lack support for bz2. Signed-off-by: Michael Olbrich --- Can you try if this patch helps? Michael rules/nodejs.make | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rules/nodejs.make b/rules/nodejs.make index 0053f0d71dbb..35521227536a 100644 --- a/rules/nodejs.make +++ b/rules/nodejs.make @@ -83,7 +83,8 @@ endif $(STATEDIR)/nodejs.prepare: @$(call targetinfo) - @$(call world/prepare, NODEJS) + @$(call world/execute, NODEJS, \ + python3 ./configure $(NODEJS_CONF_OPT)) @mkdir -p $(NODEJS_DIR)/out/Release/ @ ln -svf $(PTXDIST_SYSROOT_CROSS)/usr/bin/qemu-cross \ $(NODEJS_DIR)/out/Release/tool-wrapper -- 2.39.2