diff options
author | Etienne Cordonnier <ecordonnier@snap.com> | 2023-04-06 14:42:59 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-04-06 13:45:10 -0700 |
commit | 6b197f009d9020f781a675ff11e7bfb783fd17ce (patch) | |
tree | 97283bdd8f14bbc97325165a0f3268d2f05ca680 | |
parent | 4ee5e2badbc09e2118e44ebcc6c7913ae9b0612a (diff) | |
download | meta-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.bb | 5 |
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" | |||
6 | inherit cargo cargo-update-recipe-crates | 6 | inherit cargo cargo-update-recipe-crates |
7 | 7 | ||
8 | SRC_URI += "git://github.com/uutils/coreutils.git;protocol=https;nobranch=1" | 8 | SRC_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. | ||
12 | COMPATIBLE_HOST:libc-musl = "null" | ||
13 | |||
9 | SRCREV = "eb11c4006f3286efee5226e546f119a20998266b" | 14 | SRCREV = "eb11c4006f3286efee5226e546f119a20998266b" |
10 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
11 | 16 | ||