summaryrefslogtreecommitdiffstats
path: root/meta/classes/rust-common.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/rust-common.bbclass')
-rw-r--r--meta/classes/rust-common.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/rust-common.bbclass b/meta/classes/rust-common.bbclass
index 98d65970e8..8cfe864ca3 100644
--- a/meta/classes/rust-common.bbclass
+++ b/meta/classes/rust-common.bbclass
@@ -65,7 +65,7 @@ def rust_base_triple(d, thing):
65 if thing == "TARGET" and target_is_armv7(d): 65 if thing == "TARGET" and target_is_armv7(d):
66 arch = "armv7" 66 arch = "armv7"
67 else: 67 else:
68 arch = d.getVar('{}_ARCH'.format(thing)) 68 arch = oe.rust.arch_to_rust_arch(d.getVar('{}_ARCH'.format(thing)))
69 69
70 # All the Yocto targets are Linux and are 'unknown' 70 # All the Yocto targets are Linux and are 'unknown'
71 vendor = "-unknown" 71 vendor = "-unknown"