meta: Fix native inheritance order in recipes

Classes native/nativesdk should be inherited last to prevent unexpected
behaviour.

See [YOCTO #5729] for details.

(From OE-Core rev: 217a8974765693192cbead51ebd9845a383ef7cc)

Signed-off-by: Tomasz Dziendzielski <tomasz.dziendzielski@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Tomasz Dziendzielski
2021-01-24 10:55:46 +01:00
committed by Richard Purdie
parent 9fa87066bb
commit a2a34451c9
3 changed files with 4 additions and 4 deletions

View File

@@ -14,8 +14,8 @@ require glibc-version.inc
#
AUTOTOOLS_SCRIPT_PATH = "${S}/localedef"
inherit native
inherit autotools
inherit native
FILESEXTRAPATHS =. "${FILE_DIRNAME}/${PN}:${FILE_DIRNAME}/glibc:"

View File

@@ -1,7 +1,7 @@
include meson.inc
inherit nativesdk
inherit siteinfo
inherit nativesdk
SRC_URI += "file://meson-setup.py \
file://meson-wrapper"

View File

@@ -1,7 +1,7 @@
inherit native
require qemu.inc
inherit native
EXTRA_OEMAKE_append = " LD='${LD}' AR='${AR}' OBJCOPY='${OBJCOPY}' LDFLAGS='${LDFLAGS}'"
LDFLAGS_append = " -fuse-ld=bfd"