summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2025-03-19 17:41:46 +0000
committerKhem Raj <raj.khem@gmail.com>2025-03-19 11:37:47 -0700
commit461fa961576d0cc436d43e7aca537830afc95bad (patch)
tree608facd872608818ddfbd35acbea1dd4232b0848 /meta-oe/recipes-extended
parent5856aba5ba522ed3105589747a4f7f41ff5b0497 (diff)
downloadmeta-openembedded-461fa961576d0cc436d43e7aca537830afc95bad.tar.gz
pmdk: don't inherit autotools
This upstream does not in fact use autotools, so remove the inherit. Also remove the redundant cmake-native DEPENDS, as this upstream doesn't use cmake either. Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
-rw-r--r--meta-oe/recipes-extended/pmdk/pmdk_2.1.1.bb6
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-oe/recipes-extended/pmdk/pmdk_2.1.1.bb b/meta-oe/recipes-extended/pmdk/pmdk_2.1.1.bb
index 1bafad96b9..e32dbcf63d 100644
--- a/meta-oe/recipes-extended/pmdk/pmdk_2.1.1.bb
+++ b/meta-oe/recipes-extended/pmdk/pmdk_2.1.1.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "http://pmem.io"
4SECTION = "libs" 4SECTION = "libs"
5LICENSE = "BSD-3-Clause" 5LICENSE = "BSD-3-Clause"
6LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3e2f50552a27ca99772f3d884f98560b" 6LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3e2f50552a27ca99772f3d884f98560b"
7DEPENDS = "ndctl cmake-native" 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"
@@ -14,7 +14,7 @@ S = "${WORKDIR}/git"
14SRC_URI = "git://github.com/pmem/pmdk.git;branch=master;protocol=https" 14SRC_URI = "git://github.com/pmem/pmdk.git;branch=master;protocol=https"
15SRCREV = "0f0ab391d8e3db52f745f33c92b9d9a462bb3695" 15SRCREV = "0f0ab391d8e3db52f745f33c92b9d9a462bb3695"
16 16
17inherit autotools-brokensep pkgconfig 17inherit pkgconfig
18 18
19# Fix jemalloc error: 19# Fix jemalloc error:
20# | configure: error: cannot run C compiled programs. 20# | configure: error: cannot run C compiled programs.
@@ -26,7 +26,7 @@ EXTRA_OEMAKE = "BUILD_EXAMPLES='n' DOC='n' HOST_SYS='${HOST_SYS}' EXTRA_CFLAGS='
26# Fix the missing fts libs when using musl 26# Fix the missing fts libs when using musl
27EXTRA_OEMAKE:append:libc-musl = " EXTRA_LIBS='-lfts'" 27EXTRA_OEMAKE:append:libc-musl = " EXTRA_LIBS='-lfts'"
28 28
29do_configure:prepend() { 29do_configure() {
30 touch .skip-doc 30 touch .skip-doc
31} 31}
32 32