From cf77a6e4138ab4c22c6495e3f98d95a934d5aa1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Fri, 1 Dec 2017 14:03:30 +0100 Subject: [PATCH] modules: Allow multilib MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The list of RPMs in a module can contain multilib packages, but they are never included because we only ask for compatible arches without multilib. For x86_64 that only adds noarch, but not i686. Signed-off-by: Lubomír Sedlář --- pungi/phases/gather/sources/source_module.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/phases/gather/sources/source_module.py b/pungi/phases/gather/sources/source_module.py index bcb0923a..b0ca6716 100644 --- a/pungi/phases/gather/sources/source_module.py +++ b/pungi/phases/gather/sources/source_module.py @@ -38,7 +38,7 @@ class GatherSourceModule(pungi.phases.gather.source.GatherSourceBase): groups = set() packages = set() - compatible_arches = pungi.arch.get_compatible_arches(arch) + compatible_arches = pungi.arch.get_compatible_arches(arch, multilib=True) if variant is not None and variant.modules: variant.arch_mmds.setdefault(arch, {})