Correctly set input and fultree_exclude flags for debuginfo
This only matters for composes that use the functionality for trimming
addon packages from parent variants.
Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
(cherry picked from commit 947ddf0a1a
)
This commit is contained in:
parent
e570aa7726
commit
58f96531c7
@ -832,6 +832,12 @@ class Gather(GatherBase):
|
|||||||
continue
|
continue
|
||||||
if self.is_from_lookaside(i):
|
if self.is_from_lookaside(i):
|
||||||
self._set_flag(i, PkgFlag.lookaside)
|
self._set_flag(i, PkgFlag.lookaside)
|
||||||
|
srpm_name = i.sourcerpm.rsplit("-", 2)[0]
|
||||||
|
if srpm_name in self.opts.fulltree_excludes:
|
||||||
|
self._set_flag(i, PkgFlag.fulltree_exclude)
|
||||||
|
if PkgFlag.input in self.result_package_flags.get(srpm_name, set()):
|
||||||
|
# If src rpm is marked as input, mark debuginfo as input too
|
||||||
|
self._set_flag(i, PkgFlag.input)
|
||||||
if i not in self.result_debug_packages:
|
if i not in self.result_debug_packages:
|
||||||
added.add(i)
|
added.add(i)
|
||||||
debug_pkgs.append(i)
|
debug_pkgs.append(i)
|
||||||
|
Loading…
Reference in New Issue
Block a user