From 11951f01d9e2385d80ca708fcb1f5c98b4641d7b Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 26 Jun 2017 16:11:11 +0100 Subject: Revert "meson: fix build/host confusion for bbclass" This patch was incorrect: meson and autotools (thus OE) don't have conflicting terminology, and using HOST_* for the host_machine variables is correct. This reverts commit 77eae90ef5ca3f9a4bdf5727a29713dd2b215165. Signed-off-by: Ross Burton Signed-off-by: Martin Jansa --- meta-oe/classes/meson.bbclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'meta-oe') diff --git a/meta-oe/classes/meson.bbclass b/meta-oe/classes/meson.bbclass index cc9bc505b..72f96c541 100644 --- a/meta-oe/classes/meson.bbclass +++ b/meta-oe/classes/meson.bbclass @@ -67,9 +67,9 @@ cpp_args = [${@meson_array('MESON_C_ARGS', d)}] cpp_link_args = [${@meson_array('MESON_LINK_ARGS', d)}] [host_machine] -system = '${BUILD_OS}' -cpu_family = '${BUILD_ARCH}' -cpu = '${BUILD_ARCH}' +system = '${HOST_OS}' +cpu_family = '${HOST_ARCH}' +cpu = '${HOST_ARCH}' endian = '${MESON_HOST_ENDIAN}' [target_machine] -- cgit v1.2.3-54-g00ecf