diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-28 23:28:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-02 15:44:10 +0100 |
commit | bb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch) | |
tree | 76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-connectivity/neard/neard_0.16.bb | |
parent | fcc456ee4b8f619134abb4649db53c638074082c (diff) | |
download | poky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz |
Convert to new override syntax
This is the result of automated script conversion:
scripts/contrib/convert-overrides.py <oe-core directory>
converting the metadata to use ":" as the override character instead of "_".
(From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-connectivity/neard/neard_0.16.bb')
-rw-r--r-- | meta/recipes-connectivity/neard/neard_0.16.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-connectivity/neard/neard_0.16.bb b/meta/recipes-connectivity/neard/neard_0.16.bb index 7c124a3c0b..d55cf6a377 100644 --- a/meta/recipes-connectivity/neard/neard_0.16.bb +++ b/meta/recipes-connectivity/neard/neard_0.16.bb | |||
@@ -27,7 +27,7 @@ PACKAGECONFIG[systemd] = "--enable-systemd --with-systemdsystemunitdir=${systemd | |||
27 | EXTRA_OECONF += "--enable-tools" | 27 | EXTRA_OECONF += "--enable-tools" |
28 | 28 | ||
29 | # This would copy neard start-stop shell and test scripts | 29 | # This would copy neard start-stop shell and test scripts |
30 | do_install_append() { | 30 | do_install:append() { |
31 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then | 31 | if ${@bb.utils.contains('DISTRO_FEATURES', 'sysvinit', 'true', 'false', d)}; then |
32 | install -d ${D}${sysconfdir}/init.d/ | 32 | install -d ${D}${sysconfdir}/init.d/ |
33 | sed "s:@installpath@:${libexecdir}/nfc:" ${WORKDIR}/neard.in \ | 33 | sed "s:@installpath@:${libexecdir}/nfc:" ${WORKDIR}/neard.in \ |
@@ -36,10 +36,10 @@ do_install_append() { | |||
36 | fi | 36 | fi |
37 | } | 37 | } |
38 | 38 | ||
39 | RDEPENDS_${PN} = "dbus" | 39 | RDEPENDS:${PN} = "dbus" |
40 | 40 | ||
41 | # Bluez & Wifi are not mandatory except for handover | 41 | # Bluez & Wifi are not mandatory except for handover |
42 | RRECOMMENDS_${PN} = "\ | 42 | RRECOMMENDS:${PN} = "\ |
43 | ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez5', '', d)} \ | 43 | ${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez5', '', d)} \ |
44 | ${@bb.utils.contains('DISTRO_FEATURES', 'wifi','wpa-supplicant', '', d)} \ | 44 | ${@bb.utils.contains('DISTRO_FEATURES', 'wifi','wpa-supplicant', '', d)} \ |
45 | " | 45 | " |
@@ -47,4 +47,4 @@ RRECOMMENDS_${PN} = "\ | |||
47 | INITSCRIPT_NAME = "neard" | 47 | INITSCRIPT_NAME = "neard" |
48 | INITSCRIPT_PARAMS = "defaults 64" | 48 | INITSCRIPT_PARAMS = "defaults 64" |
49 | 49 | ||
50 | SYSTEMD_SERVICE_${PN} = "neard.service" | 50 | SYSTEMD_SERVICE:${PN} = "neard.service" |