mirror of
https://git.yoctoproject.org/poky
synced 2026-04-27 03:32:12 +02:00
package_rpm: Fix package-split summary
The package-split summaries were being pulled in from the main package, not the split package metadata. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
This commit is contained in:
@@ -192,7 +192,7 @@ python write_specfile () {
|
||||
|
||||
splitname = pkgname
|
||||
|
||||
splitsummary = (bb.data.getVar('SUMMARY', d, True) or bb.data.getVar('DESCRIPTION', d, True) or ".")
|
||||
splitsummary = (bb.data.getVar('SUMMARY', localdata, True) or bb.data.getVar('DESCRIPTION', localdata, True) or ".")
|
||||
splitversion = (bb.data.getVar('PV', localdata, True) or "").replace('-', '+')
|
||||
splitrelease = (bb.data.getVar('PR', localdata, True) or "")
|
||||
splitepoch = (bb.data.getVar('PE', localdata, True) or "")
|
||||
|
||||
Reference in New Issue
Block a user