From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Sun, 12 May 2024 15:17:40 +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 1s695A-00AvyD-1N for lore@lore.pengutronix.de; Sun, 12 May 2024 15:17:40 +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 1s6959-0004YB-Ux; Sun, 12 May 2024 15:17:39 +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 1s694F-0002gv-BQ; Sun, 12 May 2024 15:16:43 +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 1s694E-000zYa-VV; Sun, 12 May 2024 15:16:42 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.96) (envelope-from ) id 1s694E-00FXUz-30; Sun, 12 May 2024 15:16:42 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Sun, 12 May 2024 15:16:42 +0200 Message-Id: <20240512131642.3703682-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.39.2 In-Reply-To: <20240506105051.323546-4-ada@thorsis.com> References: <20240506105051.323546-4-ada@thorsis.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] ptxd_make_world_inject: Escape inject path and files 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: Alexander Dahl 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 Thanks, applied as 23c5f686998c50412b5f5fd99d7dc9c345fe1af8. Michael [sent from post-receive hook] On Sun, 12 May 2024 15:16:42 +0200, Alexander Dahl wrote: > Same as in ptxd_make_world_common for all the other variables set in > make and used in shell. > > Signed-off-by: Alexander Dahl > Acked-by: Michael Riesch > Message-Id: <20240506105051.323546-4-ada@thorsis.com> > Signed-off-by: Michael Olbrich > > diff --git a/rules/post/ptxd_make_world_inject.make b/rules/post/ptxd_make_world_inject.make > index 3506ee1140e1..eabcdd0529b8 100644 > --- a/rules/post/ptxd_make_world_inject.make > +++ b/rules/post/ptxd_make_world_inject.make > @@ -8,8 +8,8 @@ > > world/inject/env = \ > $(call world/env, $(1)) \ > - pkg_inject_path="$($(1)_INJECT_PATH)" \ > - pkg_inject_files="$($(1)_INJECT_FILES)" > + pkg_inject_path="$(call ptx/escape,$($(1)_INJECT_PATH))" \ > + pkg_inject_files="$(call ptx/escape,$($(1)_INJECT_FILES))" > > world/inject = \ > $(call world/inject/env,$(strip $(1))) \