summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-08-04 10:18:46 -0700
committerMartin Jansa <Martin.Jansa@gmail.com>2021-08-06 20:09:56 +0200
commitde38849b30cf533705c7b42b28863bcd910c6dbf (patch)
treeb24398a1e411f3bdc99baa33f0872f2e46eaecbc
parent5c990530b020a0437aee04be3ff77762a95ed629 (diff)
downloadmeta-openembedded-jansa/master.tar.gz
emacs,libgpiod,cockpit: Fix override syntax in using FILES_${PN}jansa/master
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/emacs/emacs_27.2.bb2
-rw-r--r--meta-oe/recipes-support/libgpiod/libgpiod_1.6.3.bb2
-rw-r--r--meta-webserver/recipes-webadmin/cockpit/cockpit_220.bb2
3 files changed, 3 insertions, 3 deletions
diff --git a/meta-oe/recipes-support/emacs/emacs_27.2.bb b/meta-oe/recipes-support/emacs/emacs_27.2.bb
index 485d78ce4..a91c465c1 100644
--- a/meta-oe/recipes-support/emacs/emacs_27.2.bb
+++ b/meta-oe/recipes-support/emacs/emacs_27.2.bb
@@ -253,7 +253,7 @@ FILES:${PN}-base = " \
253" 253"
254 254
255# Restore FILES for the full package to catch everything left 255# Restore FILES for the full package to catch everything left
256FILES:${PN}-full = "${FILES_${PN}}" 256FILES:${PN}-full = "${FILES:${PN}}"
257FILES:${PN}-full:append = " ${datadir}/icons" 257FILES:${PN}-full:append = " ${datadir}/icons"
258 258
259 259
diff --git a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.3.bb b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.3.bb
index 38bd23711..ac4ba85d7 100644
--- a/meta-oe/recipes-support/libgpiod/libgpiod_1.6.3.bb
+++ b/meta-oe/recipes-support/libgpiod/libgpiod_1.6.3.bb
@@ -63,7 +63,7 @@ do_install_ptest() {
63 # we're not selecting libgpiod-tools. 63 # we're not selecting libgpiod-tools.
64 install -m 0755 ${S}/tools/gpio-tools-test ${D}${PTEST_PATH}/tests/ 64 install -m 0755 ${S}/tools/gpio-tools-test ${D}${PTEST_PATH}/tests/
65 install -m 0755 ${S}/tools/gpio-tools-test.bats ${D}${PTEST_PATH}/tests/ 65 install -m 0755 ${S}/tools/gpio-tools-test.bats ${D}${PTEST_PATH}/tests/
66 for tool in ${FILES_${PN}-tools}; do 66 for tool in ${FILES:${PN}-tools}; do
67 install ${B}/tools/.libs/$(basename $tool) ${D}${PTEST_PATH}/tests/ 67 install ${B}/tools/.libs/$(basename $tool) ${D}${PTEST_PATH}/tests/
68 done 68 done
69 69
diff --git a/meta-webserver/recipes-webadmin/cockpit/cockpit_220.bb b/meta-webserver/recipes-webadmin/cockpit/cockpit_220.bb
index c49ba0456..7c3c17cd7 100644
--- a/meta-webserver/recipes-webadmin/cockpit/cockpit_220.bb
+++ b/meta-webserver/recipes-webadmin/cockpit/cockpit_220.bb
@@ -181,7 +181,7 @@ do_install:append() {
181 rm -rf ${D}${libdir}/firewalld 181 rm -rf ${D}${libdir}/firewalld
182 182
183 if ! ${@bb.utils.contains('PACKAGECONFIG', 'storaged', 'true', 'false', d)}; then 183 if ! ${@bb.utils.contains('PACKAGECONFIG', 'storaged', 'true', 'false', d)}; then
184 for filename in ${FILES_${PN}-storaged} 184 for filename in ${FILES:${PN}-storaged}
185 do 185 do
186 rm -rf ${D}$filename 186 rm -rf ${D}$filename
187 done 187 done