diff options
author | Ross Burton <ross.burton@arm.com> | 2025-03-19 17:41:46 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-03-19 11:37:47 -0700 |
commit | 461fa961576d0cc436d43e7aca537830afc95bad (patch) | |
tree | 608facd872608818ddfbd35acbea1dd4232b0848 /meta-oe/recipes-extended | |
parent | 5856aba5ba522ed3105589747a4f7f41ff5b0497 (diff) | |
download | meta-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.bb | 6 |
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" | |||
4 | SECTION = "libs" | 4 | SECTION = "libs" |
5 | LICENSE = "BSD-3-Clause" | 5 | LICENSE = "BSD-3-Clause" |
6 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3e2f50552a27ca99772f3d884f98560b" | 6 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3e2f50552a27ca99772f3d884f98560b" |
7 | DEPENDS = "ndctl cmake-native" | 7 | DEPENDS = "ndctl" |
8 | 8 | ||
9 | # Required to have the fts.h header for musl | 9 | # Required to have the fts.h header for musl |
10 | DEPENDS:append:libc-musl = " fts" | 10 | DEPENDS:append:libc-musl = " fts" |
@@ -14,7 +14,7 @@ S = "${WORKDIR}/git" | |||
14 | SRC_URI = "git://github.com/pmem/pmdk.git;branch=master;protocol=https" | 14 | SRC_URI = "git://github.com/pmem/pmdk.git;branch=master;protocol=https" |
15 | SRCREV = "0f0ab391d8e3db52f745f33c92b9d9a462bb3695" | 15 | SRCREV = "0f0ab391d8e3db52f745f33c92b9d9a462bb3695" |
16 | 16 | ||
17 | inherit autotools-brokensep pkgconfig | 17 | inherit 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 |
27 | EXTRA_OEMAKE:append:libc-musl = " EXTRA_LIBS='-lfts'" | 27 | EXTRA_OEMAKE:append:libc-musl = " EXTRA_LIBS='-lfts'" |
28 | 28 | ||
29 | do_configure:prepend() { | 29 | do_configure() { |
30 | touch .skip-doc | 30 | touch .skip-doc |
31 | } | 31 | } |
32 | 32 | ||