From 201436cd0c88995a7592d6cc1aef6fed9335133f Mon Sep 17 00:00:00 2001 From: Bruce Ashfield Date: Tue, 12 Nov 2024 19:59:15 +0000 Subject: [PATCH] container-app-base: add missing space to IMAGE_INSTALL:append Signed-off-by: Bruce Ashfield --- recipes-extended/images/container-app-base.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes-extended/images/container-app-base.bb b/recipes-extended/images/container-app-base.bb index eabef989..34381ed2 100644 --- a/recipes-extended/images/container-app-base.bb +++ b/recipes-extended/images/container-app-base.bb @@ -14,4 +14,4 @@ CONTAINER_APP_CMD ?= "date" CONTAINER_APP ?= "" OCI_IMAGE_ENTRYPOINT = "${CONTAINER_APP_CMD}" -IMAGE_INSTALL:append = "${CONTAINER_APP}" +IMAGE_INSTALL:append = " ${CONTAINER_APP}"