[yocto] [meta-swupd][PATCH] swupd-client_git.bb: fix typo in config files creation

Dmitry Rozhkov dmitry.rozhkov at linux.intel.com
Fri Aug 19 01:34:47 PDT 2016


The patch puts intended values to the config files with
swupd-client's default values.

Signed-off-by: Dmitry Rozhkov <dmitry.rozhkov at linux.intel.com>
---
 recipes-core/swupd-client/swupd-client_git.bb | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/recipes-core/swupd-client/swupd-client_git.bb b/recipes-core/swupd-client/swupd-client_git.bb
index 7e2bdd9..1815db0 100644
--- a/recipes-core/swupd-client/swupd-client_git.bb
+++ b/recipes-core/swupd-client/swupd-client_git.bb
@@ -41,9 +41,9 @@ do_install_append () {
 
     # Write default values to the configuration hierarchy (since 3.4.0)
     install -d ${D}/usr/share/defaults/swupd
-    echo "{SWUPD_VERSION_URL}" >> ${D}/usr/share/defaults/swupd/versionurl
-    echo "{SWUPD_CONTENT_URL}" >> ${D}/usr/share/defaults/swupd/contenturl
-    echo "{SWUPD_FORMAT}" >> ${D}/usr/share/defaults/swupd/format
+    echo "${SWUPD_VERSION_URL}" >> ${D}/usr/share/defaults/swupd/versionurl
+    echo "${SWUPD_CONTENT_URL}" >> ${D}/usr/share/defaults/swupd/contenturl
+    echo "${SWUPD_FORMAT}" >> ${D}/usr/share/defaults/swupd/format
 }
 
 FILES_${PN} += "\
-- 
2.5.5




More information about the yocto mailing list