summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEtienne Cordonnier <ecordonnier@snap.com>2023-04-06 14:42:59 +0200
committerKhem Raj <raj.khem@gmail.com>2023-04-06 13:45:10 -0700
commit6b197f009d9020f781a675ff11e7bfb783fd17ce (patch)
tree97283bdd8f14bbc97325165a0f3268d2f05ca680
parent4ee5e2badbc09e2118e44ebcc6c7913ae9b0612a (diff)
downloadmeta-openembedded-6b197f009d9020f781a675ff11e7bfb783fd17ce.tar.gz
uutils-coreutils: disable musl support
musl is not supported because the libc crate does not support functions like "endutxent" at the moment, so src/uucore/src/lib/features.rs disables utmpx when targetting musl. Signed-off-by: Etienne Cordonnier <ecordonnier@snap.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.0.18.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.0.18.bb b/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.0.18.bb
index 7d60a287eb..a2e541c87a 100644
--- a/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.0.18.bb
+++ b/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.0.18.bb
@@ -6,6 +6,11 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=41f7469eaacac62c67d5664fff2c062d"
6inherit cargo cargo-update-recipe-crates 6inherit cargo cargo-update-recipe-crates
7 7
8SRC_URI += "git://github.com/uutils/coreutils.git;protocol=https;nobranch=1" 8SRC_URI += "git://github.com/uutils/coreutils.git;protocol=https;nobranch=1"
9
10# musl not supported because the libc crate does not support functions like "endutxent" at the moment,
11# so src/uucore/src/lib/features.rs disables utmpx when targetting musl.
12COMPATIBLE_HOST:libc-musl = "null"
13
9SRCREV = "eb11c4006f3286efee5226e546f119a20998266b" 14SRCREV = "eb11c4006f3286efee5226e546f119a20998266b"
10S = "${WORKDIR}/git" 15S = "${WORKDIR}/git"
11 16