diff options
Diffstat (limited to 'meta/classes/multilib.bbclass')
-rw-r--r-- | meta/classes/multilib.bbclass | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/classes/multilib.bbclass b/meta/classes/multilib.bbclass index 286b806cf0..5d975fd33e 100644 --- a/meta/classes/multilib.bbclass +++ b/meta/classes/multilib.bbclass | |||
@@ -72,8 +72,9 @@ python __anonymous () { | |||
72 | 72 | ||
73 | d.setVar("PACKAGES", " ".join([row[1] for row in pkgs_mapping])) | 73 | d.setVar("PACKAGES", " ".join([row[1] for row in pkgs_mapping])) |
74 | 74 | ||
75 | vars = (d.getVar("PACKAGEVARS", True) or "").split() | ||
75 | for pkg_mapping in pkgs_mapping: | 76 | for pkg_mapping in pkgs_mapping: |
76 | for subs in ["FILES", "RDEPENDS", "RRECOMMENDS", "SUMMARY", "DESCRIPTION", "RSUGGESTS", "RPROVIDES", "RCONFLICTS", "PKG", "ALLOW_EMPTY", "pkg_postinst", "pkg_postrm", "INITSCRIPT_NAME", "INITSCRIPT_PARAMS"]: | 77 | for subs in vars: |
77 | d.renameVar("%s_%s" % (subs, pkg_mapping[0]), "%s_%s" % (subs, pkg_mapping[1])) | 78 | d.renameVar("%s_%s" % (subs, pkg_mapping[0]), "%s_%s" % (subs, pkg_mapping[1])) |
78 | 79 | ||
79 | map_dependencies("DEPENDS", d) | 80 | map_dependencies("DEPENDS", d) |