summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/packagegroup.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/packagegroup.bbclass b/meta/classes/packagegroup.bbclass
index 6606bc6f71..a79d5b05a6 100644
--- a/meta/classes/packagegroup.bbclass
+++ b/meta/classes/packagegroup.bbclass
@@ -9,7 +9,8 @@ PACKAGES = "${PN}"
9# By default, packagegroup packages do not depend on a certain architecture. 9# By default, packagegroup packages do not depend on a certain architecture.
10# Only if dependencies are modified by MACHINE_FEATURES, packages 10# Only if dependencies are modified by MACHINE_FEATURES, packages
11# need to be set to MACHINE_ARCH after inheriting packagegroup.bbclass 11# need to be set to MACHINE_ARCH after inheriting packagegroup.bbclass
12inherit allarch 12PACKAGE_ARCH ??= "all"
13inherit ${@oe.utils.ifelse(d.getVar('PACKAGE_ARCH', True) == 'all', 'allarch', '')}
13 14
14# This automatically adds -dbg and -dev flavours of all PACKAGES 15# This automatically adds -dbg and -dev flavours of all PACKAGES
15# to the list. Their dependencies (RRECOMMENDS) are handled as usual 16# to the list. Their dependencies (RRECOMMENDS) are handled as usual