From 43c91853238526d83b56c78c1ac12b5d2063d859 Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Fri, 30 Aug 2013 04:10:12 -0400 Subject: [PATCH] Don't automatically apply fulltree on input multilib packages. --- src/pypungi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pypungi/__init__.py b/src/pypungi/__init__.py index c8f3045f..88f29753 100644 --- a/src/pypungi/__init__.py +++ b/src/pypungi/__init__.py @@ -917,7 +917,7 @@ class Pungi(pypungi.PungiBase): elif po.arch in self.valid_native_arches: has_native = True continue - if po.arch in self.valid_multilib_arches and (po in self.input_packages or self.greedy_method == "all"): + if po.arch in self.valid_multilib_arches and self.greedy_method == "all": include_multilib = True elif po.arch in self.valid_native_arches: include_native = True