summaryrefslogtreecommitdiffstats
path: root/meta/classes-recipe
diff options
context:
space:
mode:
authorChen Qi <Qi.Chen@windriver.com>2023-08-21 19:14:26 -0700
committerSteve Sakoman <steve@sakoman.com>2023-09-20 05:23:02 -1000
commit0fb8a7bac1c3aefd9049c567d049a8331378a646 (patch)
tree9882945fa65679c91371dc0cbe31fcf0506d15eb /meta/classes-recipe
parente031f2e336bad2d6920734e1755355cc7b2e95b2 (diff)
downloadpoky-0fb8a7bac1c3aefd9049c567d049a8331378a646.tar.gz
cmake.bbclass: fix allarch override syntax
The override syntax should be ":allarch" instead of "_allarch". (From OE-Core rev: 72d3ecb22fea59d2520997b3f0a0651557d69ae7) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit bea74c9942a3bb4f71aca0f722b4a7306ae52fb4) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/classes-recipe')
-rw-r--r--meta/classes-recipe/cmake.bbclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/classes-recipe/cmake.bbclass b/meta/classes-recipe/cmake.bbclass
index 2f5114b6b5..2153efe5c0 100644
--- a/meta/classes-recipe/cmake.bbclass
+++ b/meta/classes-recipe/cmake.bbclass
@@ -51,10 +51,10 @@ OECMAKE_CXX_COMPILER ?= "${@oecmake_map_compiler('CXX', d)[0]}"
51OECMAKE_CXX_COMPILER_LAUNCHER ?= "${@oecmake_map_compiler('CXX', d)[1]}" 51OECMAKE_CXX_COMPILER_LAUNCHER ?= "${@oecmake_map_compiler('CXX', d)[1]}"
52 52
53# clear compiler vars for allarch to avoid sig hash difference 53# clear compiler vars for allarch to avoid sig hash difference
54OECMAKE_C_COMPILER_allarch = "" 54OECMAKE_C_COMPILER:allarch = ""
55OECMAKE_C_COMPILER_LAUNCHER_allarch = "" 55OECMAKE_C_COMPILER_LAUNCHER:allarch = ""
56OECMAKE_CXX_COMPILER_allarch = "" 56OECMAKE_CXX_COMPILER:allarch = ""
57OECMAKE_CXX_COMPILER_LAUNCHER_allarch = "" 57OECMAKE_CXX_COMPILER_LAUNCHER:allarch = ""
58 58
59OECMAKE_RPATH ?= "" 59OECMAKE_RPATH ?= ""
60OECMAKE_PERLNATIVE_DIR ??= "" 60OECMAKE_PERLNATIVE_DIR ??= ""