1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-30 00:20:08 +00:00

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
@@ -1,7 +1,7 @@
include meson.inc
inherit nativesdk
inherit siteinfo
inherit nativesdk
SRC_URI += "file://meson-setup.py \
file://meson-wrapper"
+2 -2
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"