diff options
author | 2016-08-19 11:34:47 +0300 | |
---|---|---|
committer | 2016-08-19 11:28:32 +0100 | |
commit | 4a970264a0cc6d284f510a0958cf577721e2d082 (patch) | |
tree | efdbaab5fe63665b2ca27badfe6c401ecdac0e56 /recipes-core | |
parent | 1ae4819a54c556290fa2ed0e190c3587fec35016 (diff) | |
download | meta-swupd-4a970264a0cc6d284f510a0958cf577721e2d082.tar.gz meta-swupd-4a970264a0cc6d284f510a0958cf577721e2d082.tar.bz2 meta-swupd-4a970264a0cc6d284f510a0958cf577721e2d082.zip |
swupd-client_git.bb: fix typo in config files creation
The patch puts intended values to the config files with
swupd-client's default values.
Signed-off-by: Dmitry Rozhkov <dmitry.rozhkov@linux.intel.com>
Diffstat (limited to 'recipes-core')
-rw-r--r-- | recipes-core/swupd-client/swupd-client_git.bb | 6 |
1 files 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} += "\ |