diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2021-07-29 17:04:53 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2021-08-03 10:21:25 -0700 |
commit | c61dc077bbd81260e4f167fa2251643ba0ba6974 (patch) | |
tree | 66c3243f8f64ae60f66f70a16e8128c247254a65 /meta-oe/recipes-extended/openwsman | |
parent | c5f7cfb8db54cfa4257797db5bd87828dea43296 (diff) | |
download | meta-openembedded-c61dc077bbd81260e4f167fa2251643ba0ba6974.tar.gz |
Convert to new override syntax
This is the result of automated script (0.9.1) 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 'meta-oe/recipes-extended/openwsman')
-rw-r--r-- | meta-oe/recipes-extended/openwsman/openwsman_2.6.11.bb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta-oe/recipes-extended/openwsman/openwsman_2.6.11.bb b/meta-oe/recipes-extended/openwsman/openwsman_2.6.11.bb index 9d5a2307e7..23db7c679b 100644 --- a/meta-oe/recipes-extended/openwsman/openwsman_2.6.11.bb +++ b/meta-oe/recipes-extended/openwsman/openwsman_2.6.11.bb | |||
@@ -30,10 +30,10 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=d4f53d4c6cf73b9d43186ce3be6dd0ba" | |||
30 | 30 | ||
31 | inherit systemd cmake pkgconfig python3native perlnative | 31 | inherit systemd cmake pkgconfig python3native perlnative |
32 | 32 | ||
33 | SYSTEMD_SERVICE_${PN} = "openwsmand.service" | 33 | SYSTEMD_SERVICE:${PN} = "openwsmand.service" |
34 | SYSTEMD_AUTO_ENABLE = "disable" | 34 | SYSTEMD_AUTO_ENABLE = "disable" |
35 | 35 | ||
36 | LDFLAGS_append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', " -fuse-ld=bfd ", '', d)}" | 36 | LDFLAGS:append = "${@bb.utils.contains('DISTRO_FEATURES', 'ld-is-gold', " -fuse-ld=bfd ", '', d)}" |
37 | 37 | ||
38 | EXTRA_OECMAKE = "-DBUILD_BINDINGS=NO \ | 38 | EXTRA_OECMAKE = "-DBUILD_BINDINGS=NO \ |
39 | -DBUILD_LIBCIM=NO \ | 39 | -DBUILD_LIBCIM=NO \ |
@@ -44,12 +44,12 @@ EXTRA_OECMAKE = "-DBUILD_BINDINGS=NO \ | |||
44 | -DLIB=${baselib} \ | 44 | -DLIB=${baselib} \ |
45 | " | 45 | " |
46 | 46 | ||
47 | do_configure_prepend() { | 47 | do_configure:prepend() { |
48 | export STAGING_INCDIR=${STAGING_INCDIR} | 48 | export STAGING_INCDIR=${STAGING_INCDIR} |
49 | export STAGING_LIBDIR=${STAGING_LIBDIR} | 49 | export STAGING_LIBDIR=${STAGING_LIBDIR} |
50 | } | 50 | } |
51 | 51 | ||
52 | do_install_append() { | 52 | do_install:append() { |
53 | install -d ${D}/${sysconfdir}/init.d | 53 | install -d ${D}/${sysconfdir}/init.d |
54 | install -m 755 ${B}/etc/init/openwsmand.sh ${D}/${sysconfdir}/init.d/openwsmand | 54 | install -m 755 ${B}/etc/init/openwsmand.sh ${D}/${sysconfdir}/init.d/openwsmand |
55 | ln -sf ${sysconfdir}/init.d/openwsmand ${D}/${sbindir}/rcopenwsmand | 55 | ln -sf ${sysconfdir}/init.d/openwsmand ${D}/${sbindir}/rcopenwsmand |
@@ -64,9 +64,9 @@ do_install_append() { | |||
64 | fi | 64 | fi |
65 | } | 65 | } |
66 | 66 | ||
67 | FILES_${PN}-dbg += "${libdir}/openwsman/plugins/.debug/ \ | 67 | FILES:${PN}-dbg += "${libdir}/openwsman/plugins/.debug/ \ |
68 | ${libdir}/openwsman/authenticators/.debug/ \ | 68 | ${libdir}/openwsman/authenticators/.debug/ \ |
69 | " | 69 | " |
70 | 70 | ||
71 | INSANE_SKIP_${PN} = "dev-so" | 71 | INSANE_SKIP:${PN} = "dev-so" |
72 | RDEPENDS_${PN} = "ruby" | 72 | RDEPENDS:${PN} = "ruby" |