summaryrefslogtreecommitdiffstats
path: root/recipes-support/softhsm-testtoken
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2021-07-29 19:44:05 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2021-07-30 10:29:35 +0200
commit31a770d3c0cb22c9f4ece068208d2e6b2c28f1ee (patch)
tree45dc83314dc336239e82f5d084541c3143841ed6 /recipes-support/softhsm-testtoken
parenta0d9835bad4c86416323b1055315fc1fb09bcde5 (diff)
downloadmeta-updater-31a770d3c0cb22c9f4ece068208d2e6b2c28f1ee.tar.gz
Convert to new override syntax
This is the result of automated script (0.9.0) conversion: oe-core/scripts/contrib/convert-overrides.py . converting the metadata to use ":" as the override character instead of "_". Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes-support/softhsm-testtoken')
-rw-r--r--recipes-support/softhsm-testtoken/softhsm-testtoken.bb8
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes-support/softhsm-testtoken/softhsm-testtoken.bb b/recipes-support/softhsm-testtoken/softhsm-testtoken.bb
index 68514b2..48fa2d1 100644
--- a/recipes-support/softhsm-testtoken/softhsm-testtoken.bb
+++ b/recipes-support/softhsm-testtoken/softhsm-testtoken.bb
@@ -4,14 +4,14 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
4 4
5inherit systemd 5inherit systemd
6 6
7RDEPENDS_${PN} = "softhsm libp11 opensc openssl-bin" 7RDEPENDS:${PN} = "softhsm libp11 opensc openssl-bin"
8DEPENDS_append = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', ' systemd', '', d)}" 8DEPENDS:append = "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', ' systemd', '', d)}"
9 9
10 10
11SRC_URI = "file://createtoken.service \ 11SRC_URI = "file://createtoken.service \
12 file://createtoken.sh" 12 file://createtoken.sh"
13 13
14SYSTEMD_SERVICE_${PN} = "createtoken.service" 14SYSTEMD_SERVICE:${PN} = "createtoken.service"
15 15
16do_install() { 16do_install() {
17 install -d ${D}${systemd_unitdir}/system 17 install -d ${D}${systemd_unitdir}/system
@@ -20,6 +20,6 @@ do_install() {
20 install -m 0744 ${WORKDIR}/createtoken.sh ${D}${bindir}/createtoken.sh 20 install -m 0744 ${WORKDIR}/createtoken.sh ${D}${bindir}/createtoken.sh
21} 21}
22 22
23FILES_${PN} = "${bindir}/createtoken.sh \ 23FILES:${PN} = "${bindir}/createtoken.sh \
24 ${systemd_unitdir}/system/createtoken.service" 24 ${systemd_unitdir}/system/createtoken.service"
25 25