* [ptxdist] [PATCH] image-rauc: Fix quoting
@ 2017-06-28 10:01 Uwe Kleine-König
0 siblings, 0 replies; only message in thread
From: Uwe Kleine-König @ 2017-06-28 10:01 UTC (permalink / raw)
To: ptxdist
This is important when
PTXCONF_RAUC_COMPATIBLE="${PTXCONF_PROJECT_VENDOR} ${PTXCONF_PROJECT}"
(i.e. the default) and one of the two used variables contains a space.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
---
The problem was found by a customer who's company name has a space and the fix
was suggested by mol via irc. :-)
rules/image-rauc.make | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/rules/image-rauc.make b/rules/image-rauc.make
index 5f34909de91e..bf7408db8ba2 100644
--- a/rules/image-rauc.make
+++ b/rules/image-rauc.make
@@ -30,7 +30,7 @@ IMAGE_RAUC_KEY = $(PTXDIST_PLATFORMCONFIGDIR)/config/rauc/rauc.key.pem
IMAGE_RAUC_CERT = $(PTXDIST_PLATFORMCONFIGDIR)/config/rauc/rauc.cert.pem
IMAGE_RAUC_ENV := \
- RAUC_BUNDLE_COMPATIBLE=$(PTXCONF_RAUC_COMPATIBLE) \
+ RAUC_BUNDLE_COMPATIBLE="$(call remove_quotes,$(PTXCONF_RAUC_COMPATIBLE))" \
RAUC_BUNDLE_VERSION=$(PTXDIST_BSP_AUTOVERSION) \
RAUC_BUNDLE_BUILD=$(shell date +%FT%T%z) \
RAUC_BUNDLE_DESCRIPTION=$(PTXCONF_IMAGE_RAUC_DESCRIPTION) \
--
2.11.0
_______________________________________________
ptxdist mailing list
ptxdist@pengutronix.de
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2017-06-28 10:01 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-28 10:01 [ptxdist] [PATCH] image-rauc: Fix quoting Uwe Kleine-König
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox