diff mbox series

[1/3] native: Clear TUNE_FEATURES/ABIEXTENSION

Message ID 20220726142413.2262729-1-richard.purdie@linuxfoundation.org
State New
Headers show
Series [1/3] native: Clear TUNE_FEATURES/ABIEXTENSION | expand

Commit Message

Richard Purdie July 26, 2022, 2:24 p.m. UTC
Some recipes reference these. Rather than continually trying to chase down the references
and taskhash issues, clear the variables for an easier life and simpler code. These
wouldn't convey anything useful in a native build.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 meta/classes/native.bbclass | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/meta/classes/native.bbclass b/meta/classes/native.bbclass
index fc7422c5d7a..5a273cdebba 100644
--- a/meta/classes/native.bbclass
+++ b/meta/classes/native.bbclass
@@ -23,6 +23,8 @@  TARGET_CFLAGS = "${BUILD_CFLAGS}"
 TARGET_CXXFLAGS = "${BUILD_CXXFLAGS}"
 TARGET_LDFLAGS = "${BUILD_LDFLAGS}"
 TARGET_FPU = ""
+TUNE_FEATURES = ""
+ABIEXTENSION = ""
 
 HOST_ARCH = "${BUILD_ARCH}"
 HOST_OS = "${BUILD_OS}"