From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Fri, 03 May 2024 12:58:57 +0200 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 1s2qcz-00HA0O-2f for lore@lore.pengutronix.de; Fri, 03 May 2024 12:58:57 +0200 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 1s2qcz-0005m4-Ak; Fri, 03 May 2024 12:58:57 +0200 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 1s2qcw-0005hm-4K; Fri, 03 May 2024 12:58:54 +0200 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 1s2qcv-00Fga9-ON; Fri, 03 May 2024 12:58:53 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1s2qcv-00B6NQ-29; Fri, 03 May 2024 12:58:53 +0200 From: Michael Olbrich To: distrokit@pengutronix.de Date: Fri, 3 May 2024 12:58:44 +0200 Message-Id: <20240503105844.2621419-4-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240503105844.2621419-1-m.olbrich@pengutronix.de> References: <20240503105844.2621419-1-m.olbrich@pengutronix.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [DistroKit] [PATCH 3/3] tf-a-stm32mp13: don't use _BUILDDIR X-BeenThere: distrokit@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: DistroKit Mailinglist List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Olbrich , Ahmad Fatoum Sender: "DistroKit" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: distrokit-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thise variable name has a special meaning and is deprecated. Use _BUILD_DIR instead. Signed-off-by: Michael Olbrich --- configs/platform-v7a/rules/tf-a-stm32mp13.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configs/platform-v7a/rules/tf-a-stm32mp13.make b/configs/platform-v7a/rules/tf-a-stm32mp13.make index 137dc8de3204..c404cde890bb 100644 --- a/configs/platform-v7a/rules/tf-a-stm32mp13.make +++ b/configs/platform-v7a/rules/tf-a-stm32mp13.make @@ -22,7 +22,7 @@ TF_A_STM32MP13_SUFFIX := tar.gz TF_A_STM32MP13_URL = $(TF_A_URL) TF_A_STM32MP13_SOURCE = $(TF_A_SOURCE) TF_A_STM32MP13_DIR := $(BUILDDIR)/$(TF_A_STM32MP13) -TF_A_STM32MP13_BUILDDIR := $(TF_A_STM32MP13_DIR)/build +TF_A_STM32MP13_BUILD_DIR := $(TF_A_STM32MP13_DIR)/build TF_A_STM32MP13_BUILD_OOT := YES TF_A_STM32MP13_LICENSE := BSD-3-Clause AND BSD-2-Clause \ AND (GPL-2.0-or-later OR BSD-2-Clause) \ @@ -78,7 +78,7 @@ $(STATEDIR)/tf-a-stm32mp13.compile: tf-a-stm32mp13/inst_plat = $(foreach artifact, \ $(foreach pattern, $(TF_A_STM32MP13_ARTIFACTS), \ - $(wildcard $(TF_A_STM32MP13_BUILDDIR)/$(1)/$(if $(filter DEBUG=1,TF_A_STM32MP13_MAKE_OPT),debug,release)/$(pattern))), \ + $(wildcard $(TF_A_STM32MP13_BUILD_DIR)/$(1)/$(if $(filter DEBUG=1,TF_A_STM32MP13_MAKE_OPT),debug,release)/$(pattern))), \ install -v -D -m 644 $(artifact) \ $(2)/$(1)-$(notdir $(artifact))$(ptx/nl)) -- 2.39.2