From 7ee920a085dfcd9794ca9c73d9fab73bfcbd6488 Mon Sep 17 00:00:00 2001 From: Jan Kaluza Date: Feb 22 2018 10:54:02 +0000 Subject: Disable multilib for modules Signed-off-by: Jan Kaluza --- diff --git a/pungi/phases/gather/sources/source_module.py b/pungi/phases/gather/sources/source_module.py index 57740fc..7fc0bb6 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, {})