diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2014-01-16 13:16:56 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-01-16 12:05:47 +0000 |
commit | f6e170f16920554965a64d330cc3832a40a249f2 (patch) | |
tree | c6d2173edbbbc21d54ccf7b71743e209dd90c6bc /meta/recipes-core | |
parent | 63cde7251587747264601f1572699b26abdac11f (diff) | |
download | poky-f6e170f16920554965a64d330cc3832a40a249f2.tar.gz |
nativesdk-packagegroup-sdk-host: reverse inherit order
Currently, tow successive toolchain builds for different hosts, will
issue a warning:
WARNING: The recipe nativesdk-packagegroup-sdk-host is trying to install
files into a shared area when those files already exist. Those files and
their manifest location are:
/ssd/work/yp1/build/tmp/deploy/ipk/all/nativesdk-packagegroup-sdk-host_1.0-r11_all.ipk
Matched in manifest-x86_64-nativesdk-packagegroup-sdk-host.package_write_ipk
Please verify which package should provide the above files.
That's because packagegroup is manually inherited after nativesdk which
is usually a BBCLASSEXTEND operation, done last.
[YOCTO #5396]
(From OE-Core rev: 7621a40d24f3e53b373f233e070894e4afc2b4b2)
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb b/meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb index 9581ef38a5..1065f30b2b 100644 --- a/meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb +++ b/meta/recipes-core/packagegroups/nativesdk-packagegroup-sdk-host.bb | |||
@@ -6,7 +6,7 @@ SUMMARY = "Host packages for the standalone SDK or external toolchain" | |||
6 | PR = "r11" | 6 | PR = "r11" |
7 | LICENSE = "MIT" | 7 | LICENSE = "MIT" |
8 | 8 | ||
9 | inherit nativesdk packagegroup | 9 | inherit packagegroup nativesdk |
10 | 10 | ||
11 | PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1" | 11 | PACKAGEGROUP_DISABLE_COMPLEMENTARY = "1" |
12 | 12 | ||