summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/tipcutils
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2021-07-29 17:04:53 +0200
committerKhem Raj <raj.khem@gmail.com>2021-08-03 10:21:25 -0700
commitc61dc077bbd81260e4f167fa2251643ba0ba6974 (patch)
tree66c3243f8f64ae60f66f70a16e8128c247254a65 /meta-oe/recipes-extended/tipcutils
parentc5f7cfb8db54cfa4257797db5bd87828dea43296 (diff)
downloadmeta-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/tipcutils')
-rw-r--r--meta-oe/recipes-extended/tipcutils/tipcutils_git.bb10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta-oe/recipes-extended/tipcutils/tipcutils_git.bb b/meta-oe/recipes-extended/tipcutils/tipcutils_git.bb
index 637770af24..e2e6de6b5f 100644
--- a/meta-oe/recipes-extended/tipcutils/tipcutils_git.bb
+++ b/meta-oe/recipes-extended/tipcutils/tipcutils_git.bb
@@ -15,15 +15,15 @@ inherit autotools pkgconfig
15 15
16DEPENDS += "libdaemon" 16DEPENDS += "libdaemon"
17 17
18RDEPENDS_${PN} = "iproute2-tipc" 18RDEPENDS:${PN} = "iproute2-tipc"
19 19
20S = "${WORKDIR}/git" 20S = "${WORKDIR}/git"
21 21
22do_configure_prepend() { 22do_configure:prepend() {
23 ( cd ${S}; ${S}/bootstrap ) 23 ( cd ${S}; ${S}/bootstrap )
24} 24}
25 25
26do_install_append() { 26do_install:append() {
27 demos="benchmark hello_world topology_subscr_demo connection_demo \ 27 demos="benchmark hello_world topology_subscr_demo connection_demo \
28 multicast_demo stream_demo" 28 multicast_demo stream_demo"
29 for i in $demos;do 29 for i in $demos;do
@@ -44,6 +44,6 @@ do_install_append() {
44} 44}
45 45
46PACKAGES += "${PN}-demos" 46PACKAGES += "${PN}-demos"
47FILES_${PN}-dbg += "/opt/tipcutils/demos/*/.debug /opt/tipcutils/ptts/.debug" 47FILES:${PN}-dbg += "/opt/tipcutils/demos/*/.debug /opt/tipcutils/ptts/.debug"
48FILES_${PN}-demos = "/opt/tipcutils/*" 48FILES:${PN}-demos = "/opt/tipcutils/*"
49 49