From f39021c5df70ebe3bb739c069df83c417ff94ce4 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 6 Jul 2026 09:34:45 +0100 Subject: [PATCH] uutils-coreutils: delete .cargo/config.toml This file hardcodes a specific compiler for aarch64-linux builds, which is not the compiler that we provide. As it's otherwise useless, we can just delete the file. Signed-off-by: Ross Burton Signed-off-by: Khem Raj --- .../recipes-core/uutils-coreutils/uutils-coreutils_0.9.0.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.9.0.bb b/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.9.0.bb index d294736395..2c7d3a3200 100644 --- a/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.9.0.bb +++ b/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.9.0.bb @@ -65,6 +65,10 @@ python __anonymous() { BBCLASSEXTEND = "native nativesdk" +do_configure:prepend() { + rm -f ${S}/.cargo/config.toml +} + do_compile:prepend() { export LIBSTDBUF_DIR="${libdir}/coreutils" }