diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2019-01-25 13:47:45 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-01-28 23:14:09 +0000 |
commit | ba3aa531129186ce531c46acb68f329f6c8f376e (patch) | |
tree | c54af19a5cb1f26c769d49629f8a087d28a7fe40 /meta/classes | |
parent | ecfe26834922861ab69602b8c1aa404080f0fb0c (diff) | |
download | poky-ba3aa531129186ce531c46acb68f329f6c8f376e.tar.gz |
Change default debug split to make separate source packages
Changes the default PACKAGE_DEBUG_SPLIT_STYLE to generate separate
source and debug packages. SDKIMAGE_FEATURES is updated to include the
source packages so that there is not change for the SDK contents.
[YOCTO #12931]
(From OE-Core rev: 8df14b678e44cc749b361224af05ccbcfa9ae9b5)
Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/populate_sdk_base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk_base.bbclass b/meta/classes/populate_sdk_base.bbclass index f2c934aaeb..80fa443e4c 100644 --- a/meta/classes/populate_sdk_base.bbclass +++ b/meta/classes/populate_sdk_base.bbclass | |||
@@ -18,7 +18,7 @@ def complementary_globs(featurevar, d): | |||
18 | globs.append(glob) | 18 | globs.append(glob) |
19 | return ' '.join(globs) | 19 | return ' '.join(globs) |
20 | 20 | ||
21 | SDKIMAGE_FEATURES ??= "dev-pkgs dbg-pkgs ${@bb.utils.contains('DISTRO_FEATURES', 'api-documentation', 'doc-pkgs', '', d)}" | 21 | SDKIMAGE_FEATURES ??= "dev-pkgs dbg-pkgs src-pkgs ${@bb.utils.contains('DISTRO_FEATURES', 'api-documentation', 'doc-pkgs', '', d)}" |
22 | SDKIMAGE_INSTALL_COMPLEMENTARY = '${@complementary_globs("SDKIMAGE_FEATURES", d)}' | 22 | SDKIMAGE_INSTALL_COMPLEMENTARY = '${@complementary_globs("SDKIMAGE_FEATURES", d)}' |
23 | 23 | ||
24 | PACKAGE_ARCHS_append_task-populate-sdk = " sdk-provides-dummy-target" | 24 | PACKAGE_ARCHS_append_task-populate-sdk = " sdk-provides-dummy-target" |