diff options
author | André Draszik <andre.draszik@jci.com> | 2019-10-01 16:57:28 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-10-02 20:22:25 +0100 |
commit | a98bc7dcdf864f2ea6d6a727e053049dbccfaf5e (patch) | |
tree | 3090e5864088cccfd4bccaa573f89a3d27663171 /meta/classes/packagegroup.bbclass | |
parent | 4457c74ee558534488f1e979882108551e822953 (diff) | |
download | poky-a98bc7dcdf864f2ea6d6a727e053049dbccfaf5e.tar.gz |
packagegroup: fix a comment regarding PACKAGE_ARCH
packagegroups whose dependencies are affected by MACHINE_FEATURES
need to be marked as MACHINE_ARCH *before* inheriting the
packagegroup class, not after.
This has changed in commit 9c826962ec8f
("packagegroup: Make allarch inherit conditional"),
commit 4f3f34deafe4 in poky but the comment here
wasn't updated at the time.
(From OE-Core rev: 7eae2502936aa36401491cd1e0e5975db96529ae)
Signed-off-by: André Draszik <andre.draszik@jci.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/packagegroup.bbclass')
-rw-r--r-- | meta/classes/packagegroup.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/packagegroup.bbclass b/meta/classes/packagegroup.bbclass index 94a59e0c03..1541c8fbff 100644 --- a/meta/classes/packagegroup.bbclass +++ b/meta/classes/packagegroup.bbclass | |||
@@ -8,7 +8,7 @@ PACKAGES = "${PN}" | |||
8 | 8 | ||
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 before inheriting packagegroup.bbclass |
12 | PACKAGE_ARCH ?= "all" | 12 | PACKAGE_ARCH ?= "all" |
13 | 13 | ||
14 | # Fully expanded - so it applies the overrides as well | 14 | # Fully expanded - so it applies the overrides as well |