Find %name-debuginfo-common-%arch debuginfo files.
This commit is contained in:
parent
9d7f82d91a
commit
aa401cc49b
@ -657,8 +657,13 @@ class Pungi(pypungi.PungiBase):
|
|||||||
self.debuginfolist.append(srcresults[0])
|
self.debuginfolist.append(srcresults[0])
|
||||||
|
|
||||||
if po.name == 'kernel' or po.name == 'glibc':
|
if po.name == 'kernel' or po.name == 'glibc':
|
||||||
|
# %name-debuginfo-common
|
||||||
debugcommon = '%s-debuginfo-common' % po.name
|
debugcommon = '%s-debuginfo-common' % po.name
|
||||||
commonresults = self.ayum.pkgSack.searchNevra(name=debugcommon,
|
# %name-debuginfo-common-%arch
|
||||||
|
debugcommon_arch = "%s-%s" % (debugcommon, po.arch)
|
||||||
|
|
||||||
|
for name in (debugcommon, debugcommon_arch):
|
||||||
|
commonresults = self.ayum.pkgSack.searchNevra(name=name,
|
||||||
epoch=po.epoch,
|
epoch=po.epoch,
|
||||||
ver=po.version,
|
ver=po.version,
|
||||||
rel=po.release,
|
rel=po.release,
|
||||||
|
Loading…
Reference in New Issue
Block a user