From: Richard Purdie Date: Mon, 25 Jul 2022 10:59:19 +0000 (+0100) Subject: native: Clear TUNE_FEATURES/ABIEXTENSION X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~3488 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8edeead263708889d31a7ff578ef8274cb678b4;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git native: Clear TUNE_FEATURES/ABIEXTENSION 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 --- 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}"