From fb4d63ec3dd4b8d337f03cbac427c71529632c04 Mon Sep 17 00:00:00 2001 From: Stephan Kulow Date: Wed, 10 Oct 2018 06:45:14 +0200 Subject: [PATCH] Fix overlap calculation: modules only have filtered archs --- pkglistgen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkglistgen.py b/pkglistgen.py index a3d794f1..8036cd73 100755 --- a/pkglistgen.py +++ b/pkglistgen.py @@ -1123,7 +1123,7 @@ class CommandLineInterface(ToolBase.CommandLineInterface): for module in modules: if module.name == 'overlap' or module in overlap.ignored: continue - for arch in ['*'] + module.architectures: + for arch in ['*'] + self.tool.filtered_architectures: for p in overlapped: module.solved_packages[arch].pop(p, None)