From 7ee920a085dfcd9794ca9c73d9fab73bfcbd6488 Mon Sep 17 00:00:00 2001 From: Jan Kaluza Date: Thu, 22 Feb 2018 11:54:02 +0100 Subject: [PATCH] Disable multilib for modules Signed-off-by: Jan Kaluza --- pungi/phases/gather/sources/source_module.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pungi/phases/gather/sources/source_module.py b/pungi/phases/gather/sources/source_module.py index 57740fca..7fc0bb63 100644 --- a/pungi/phases/gather/sources/source_module.py +++ b/pungi/phases/gather/sources/source_module.py @@ -39,7 +39,10 @@ class GatherSourceModule(pungi.phases.gather.source.GatherSourceBase): groups = set() packages = set() - compatible_arches = pungi.arch.get_compatible_arches(arch, multilib=True) + # TODO: Enable multilib here and handle "multilib" field in the + # components part of modulemd. We currently cannot do it, because + # it is not clear what is semantic of that modulemd section. + compatible_arches = pungi.arch.get_compatible_arches(arch, multilib=False) if variant is not None and variant.modules: variant.arch_mmds.setdefault(arch, {})