From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 24 Mar 2025 08:28:47 +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 1twcEp-003UWV-2o for lore@lore.pengutronix.de; Mon, 24 Mar 2025 08:28:47 +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 1twcEo-00022M-RM; Mon, 24 Mar 2025 08:28:46 +0100 Received: from ptz.office.stw.pengutronix.de ([2a0a:edc0:0:900:1d::77] helo=localhost) by metis.whiteo.stw.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1twcEQ-0001u3-RD; Mon, 24 Mar 2025 08:28:22 +0100 From: r.czerwinski@pengutronix.de To: ptxdist@pengutronix.de Date: Mon, 24 Mar 2025 08:28:13 +0100 Message-ID: <20250324072813.523047-2-r.czerwinski@pengutronix.de> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250324072813.523047-1-r.czerwinski@pengutronix.de> References: <20250324072813.523047-1-r.czerwinski@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [ptxdist] [PATCH 2/2] host-imx-cst: use bison instead of byacc 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: Rouven Czerwinski 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 From: Rouven Czerwinski Bison is fully compatible to the default byacc tool used by cst. Remove the byacc dependency by overwriting the correct make variable with bison. Signed-off-by: Rouven Czerwinski --- rules/host-imx-cst.make | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rules/host-imx-cst.make b/rules/host-imx-cst.make index 9712aa4ed..2cabe16fb 100644 --- a/rules/host-imx-cst.make +++ b/rules/host-imx-cst.make @@ -68,6 +68,9 @@ HOST_IMX_CST_MAKE_ENV := \ $(HOST_ENV) \ OPENSSL_PATH="$(PTXDIST_SYSROOT_HOST)/usr/lib/" +HOST_IMX_CST_MAKE_OPT := \ + YACC=bison + # ---------------------------------------------------------------------------- # Install # ---------------------------------------------------------------------------- -- 2.48.1