summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/image.bbclass4
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/classes/image.bbclass b/meta/classes/image.bbclass
index 0f7744aa5e..72720f1ffd 100644
--- a/meta/classes/image.bbclass
+++ b/meta/classes/image.bbclass
@@ -35,7 +35,7 @@ NORMAL_FEATURE_INSTALL_OPTIONAL = "${@' '.join(oe.packagegroup.optional_packages
35 35
36def normal_groups(d): 36def normal_groups(d):
37 """Return all the IMAGE_FEATURES, with the exception of our special package groups""" 37 """Return all the IMAGE_FEATURES, with the exception of our special package groups"""
38 extras = set(['dev-pkgs', 'doc-pkgs', 'dbg-pkgs']) 38 extras = set(['dev-pkgs', 'staticdev-pkgs', 'doc-pkgs', 'dbg-pkgs'])
39 features = set(oe.data.typed_value('IMAGE_FEATURES', d)) 39 features = set(oe.data.typed_value('IMAGE_FEATURES', d))
40 return features.difference(extras) 40 return features.difference(extras)
41 41
@@ -47,6 +47,8 @@ def complementary_globs(featurevar, d):
47 for feature in features: 47 for feature in features:
48 if feature == 'dev-pkgs': 48 if feature == 'dev-pkgs':
49 globs.append('*-dev') 49 globs.append('*-dev')
50 elif feature == 'staticdev-pkgs':
51 globs.append('*-staticdev')
50 elif feature == 'doc-pkgs': 52 elif feature == 'doc-pkgs':
51 globs.append('*-doc') 53 globs.append('*-doc')
52 elif feature == 'dbg-pkgs': 54 elif feature == 'dbg-pkgs':