Turn off fulltree for multilib packages.

This commit is contained in:
Daniel Mach 2013-08-06 10:40:22 -04:00
parent 9a09cf9df3
commit e1f1231bb1
1 changed files with 2 additions and 2 deletions

View File

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