summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/pmdk
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/pmdk
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/pmdk')
-rw-r--r--meta-oe/recipes-extended/pmdk/pmdk_1.9.bb18
1 files changed, 9 insertions, 9 deletions
diff --git a/meta-oe/recipes-extended/pmdk/pmdk_1.9.bb b/meta-oe/recipes-extended/pmdk/pmdk_1.9.bb
index 8bb89f418c..4325c15c33 100644
--- a/meta-oe/recipes-extended/pmdk/pmdk_1.9.bb
+++ b/meta-oe/recipes-extended/pmdk/pmdk_1.9.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=b44ee63f162f9cdb18fff1224877aafd"
7DEPENDS = "ndctl" 7DEPENDS = "ndctl"
8 8
9# Required to have the fts.h header for musl 9# Required to have the fts.h header for musl
10DEPENDS_append_libc-musl = " fts" 10DEPENDS:append:libc-musl = " fts"
11 11
12S = "${WORKDIR}/git" 12S = "${WORKDIR}/git"
13 13
@@ -25,9 +25,9 @@ inherit autotools-brokensep pkgconfig
25EXTRA_OEMAKE = "BUILD_EXAMPLES='n' DOC='n' HOST_SYS='${HOST_SYS}' EXTRA_CFLAGS='${SELECTED_OPTIMIZATION}' LIB_PREFIX=${baselib}" 25EXTRA_OEMAKE = "BUILD_EXAMPLES='n' DOC='n' HOST_SYS='${HOST_SYS}' EXTRA_CFLAGS='${SELECTED_OPTIMIZATION}' LIB_PREFIX=${baselib}"
26 26
27# Fix the missing fts libs when using musl 27# Fix the missing fts libs when using musl
28EXTRA_OEMAKE_append_libc-musl = " EXTRA_LIBS='-lfts'" 28EXTRA_OEMAKE:append:libc-musl = " EXTRA_LIBS='-lfts'"
29 29
30do_configure_prepend() { 30do_configure:prepend() {
31 touch .skip-doc 31 touch .skip-doc
32} 32}
33 33
@@ -39,11 +39,11 @@ do_install() {
39} 39}
40 40
41# Include these by default otherwise the SDK is not very useful 41# Include these by default otherwise the SDK is not very useful
42FILES_${PN} += "${bindir}/pmempool ${bindir}/daxio" 42FILES:${PN} += "${bindir}/pmempool ${bindir}/daxio"
43FILES_${PN} += "${libdir}/*so*" 43FILES:${PN} += "${libdir}/*so*"
44FILES_${PN} += "${libdir}/pkgconfig/*.pc" 44FILES:${PN} += "${libdir}/pkgconfig/*.pc"
45FILES_${PN} += "${includedir}/libpmemobj++/* ${includedir}/libpmemobj/* /usr/*/include/" 45FILES:${PN} += "${includedir}/libpmemobj++/* ${includedir}/libpmemobj/* /usr/*/include/"
46FILES_${PN} += "/usr/etc" 46FILES:${PN} += "/usr/etc"
47FILES_${PN} += "/usr/share" 47FILES:${PN} += "/usr/share"
48 48
49COMPATIBLE_HOST='(x86_64).*' 49COMPATIBLE_HOST='(x86_64).*'