From 4de0676ed3efc4ce264a5079618e715059fdbe99 Mon Sep 17 00:00:00 2001 From: Luca Barbato Date: Sat, 26 Nov 2022 17:36:03 +0100 Subject: [PATCH] rust-lang: Fix the arm musleabi mapping --- lang/rust/rust_environment.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lang/rust/rust_environment.mk b/lang/rust/rust_environment.mk index 1033c75c922909..2fb39c50673ebc 100644 --- a/lang/rust/rust_environment.mk +++ b/lang/rust/rust_environment.mk @@ -18,6 +18,6 @@ ifeq ($(ARCH),"arm") endif ifeq ($(CONFIG_HAS_FPU),y) - RUSTC_TARGET_ARCH:=$(subst muslgnueabi,muslgnueabihf,$(RUSTC_TARGET_ARCH)) + RUSTC_TARGET_ARCH:=$(subst musleabi,musleabihf,$(RUSTC_TARGET_ARCH)) endif endif