diff options
author | Tomasz Dziendzielski <tomasz.dziendzielski@gmail.com> | 2021-01-24 10:55:46 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-01-27 10:17:45 +0000 |
commit | a2a34451c933ce0084c5f59dba6c125b9d32eb6a (patch) | |
tree | c61f86f4df6a224b056e6cb0ca750c98a4052c00 /meta/recipes-core/glibc | |
parent | 9fa87066bb36ad895ac78b3d40564f83aa7f0d73 (diff) | |
download | poky-a2a34451c933ce0084c5f59dba6c125b9d32eb6a.tar.gz |
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>
Diffstat (limited to 'meta/recipes-core/glibc')
-rw-r--r-- | meta/recipes-core/glibc/cross-localedef-native_2.32.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/glibc/cross-localedef-native_2.32.bb b/meta/recipes-core/glibc/cross-localedef-native_2.32.bb index 5a0abbb70f..ec59c6ba10 100644 --- a/meta/recipes-core/glibc/cross-localedef-native_2.32.bb +++ b/meta/recipes-core/glibc/cross-localedef-native_2.32.bb | |||
@@ -14,8 +14,8 @@ require glibc-version.inc | |||
14 | # | 14 | # |
15 | AUTOTOOLS_SCRIPT_PATH = "${S}/localedef" | 15 | AUTOTOOLS_SCRIPT_PATH = "${S}/localedef" |
16 | 16 | ||
17 | inherit native | ||
18 | inherit autotools | 17 | inherit autotools |
18 | inherit native | ||
19 | 19 | ||
20 | FILESEXTRAPATHS =. "${FILE_DIRNAME}/${PN}:${FILE_DIRNAME}/glibc:" | 20 | FILESEXTRAPATHS =. "${FILE_DIRNAME}/${PN}:${FILE_DIRNAME}/glibc:" |
21 | 21 | ||