summaryrefslogtreecommitdiffstats
path: root/rules/image-rauc.make
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2017-06-28 12:01:53 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2017-06-30 14:21:21 +0200
commit391b8ec1a58e0373258e41d303a9facc595ad1c6 (patch)
treec2992b508cf96c9e842ee88c0ec1c82a3c32a44d /rules/image-rauc.make
parentd8e41f483f05e31f546da5b8630c2ebd5df43892 (diff)
downloadptxdist-391b8ec1a58e0373258e41d303a9facc595ad1c6.tar.gz
ptxdist-391b8ec1a58e0373258e41d303a9facc595ad1c6.tar.xz
image-rauc: Fix quoting
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> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/image-rauc.make')
-rw-r--r--rules/image-rauc.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/image-rauc.make b/rules/image-rauc.make
index 5f34909de..bf7408db8 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) \