Don't automatically apply fulltree on input multilib packages.

This commit is contained in:
Daniel Mach 2013-08-30 04:10:12 -04:00
parent cb6f1dbe17
commit 43c9185323
1 changed files with 1 additions and 1 deletions

View File

@ -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