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-support/websocketpp | |
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-support/websocketpp')
-rw-r--r-- | meta-oe/recipes-support/websocketpp/websocketpp_0.8.2.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-oe/recipes-support/websocketpp/websocketpp_0.8.2.bb b/meta-oe/recipes-support/websocketpp/websocketpp_0.8.2.bb index 79a5ac5c4e..4237801547 100644 --- a/meta-oe/recipes-support/websocketpp/websocketpp_0.8.2.bb +++ b/meta-oe/recipes-support/websocketpp/websocketpp_0.8.2.bb | |||
@@ -16,10 +16,10 @@ SRC_URI = "git://github.com/zaphoyd/websocketpp.git;protocol=https \ | |||
16 | EXTRA_OECMAKE = "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', '-DBUILD_EXAMPLES=ON -DBUILD_TESTS=ON', '', d)} " | 16 | EXTRA_OECMAKE = "${@bb.utils.contains('DISTRO_FEATURES', 'ptest', '-DBUILD_EXAMPLES=ON -DBUILD_TESTS=ON', '', d)} " |
17 | 17 | ||
18 | # this is an header only library, do not depend on the main package | 18 | # this is an header only library, do not depend on the main package |
19 | RDEPENDS_${PN}-dev = "" | 19 | RDEPENDS:${PN}-dev = "" |
20 | 20 | ||
21 | # to add this package to an SDK, since it isn't a reverse-dependency of anything, just use something like this: | 21 | # to add this package to an SDK, since it isn't a reverse-dependency of anything, just use something like this: |
22 | # TOOLCHAIN_TARGET_TASK_append = " websocketpp-dev" | 22 | # TOOLCHAIN_TARGET_TASK:append = " websocketpp-dev" |
23 | 23 | ||
24 | # tag 0.8.2 | 24 | # tag 0.8.2 |
25 | SRCREV= "56123c87598f8b1dd471be83ca841ceae07f95ba" | 25 | SRCREV= "56123c87598f8b1dd471be83ca841ceae07f95ba" |
@@ -30,9 +30,9 @@ inherit cmake | |||
30 | 30 | ||
31 | PACKAGES =+ "${PN}-examples" | 31 | PACKAGES =+ "${PN}-examples" |
32 | 32 | ||
33 | FILES_${PN}-examples = "${docdir}" | 33 | FILES:${PN}-examples = "${docdir}" |
34 | 34 | ||
35 | do_install_append() { | 35 | do_install:append() { |
36 | install -d ${D}${docdir}/${BPN} | 36 | install -d ${D}${docdir}/${BPN} |
37 | cp -R ${S}/examples ${D}${docdir}/${BPN} | 37 | cp -R ${S}/examples ${D}${docdir}/${BPN} |
38 | } | 38 | } |