From e1f1231bb1174ca1e7cecb6914a5e9080f2cb04c Mon Sep 17 00:00:00 2001 From: Daniel Mach Date: Tue, 6 Aug 2013 10:40:22 -0400 Subject: [PATCH] Turn off fulltree for multilib packages. --- src/pypungi/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pypungi/__init__.py b/src/pypungi/__init__.py index 3d44e955..54da9f44 100644 --- a/src/pypungi/__init__.py +++ b/src/pypungi/__init__.py @@ -475,7 +475,7 @@ class Pungi(pypungi.PungiBase): all_deps = deps deps = [self.ayum._bestPackageFromList(all_deps)] if self.greedy_method == "build": - # hande "build" greedy method + # handle "build" greedy method if deps: build_po = deps[0] if is_package(build_po): @@ -906,7 +906,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: + if po.arch in self.valid_multilib_arches and (po in self.input_packages or self.greedy_method == "all"): include_multilib = True elif po.arch in self.valid_native_arches: include_native = True