mirror of
https://git.yoctoproject.org/poky
synced 2026-03-17 04:39:40 +01: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:
committed by
Richard Purdie
parent
9fa87066bb
commit
a2a34451c9
@@ -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:"
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
include meson.inc
|
||||
|
||||
inherit nativesdk
|
||||
inherit siteinfo
|
||||
inherit nativesdk
|
||||
|
||||
SRC_URI += "file://meson-setup.py \
|
||||
file://meson-wrapper"
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user