mirror of
https://git.yoctoproject.org/poky
synced 2026-05-01 15:32:12 +02:00
devtool: fix for rename of gcc-source
After OE-Core commit 67db7182faf6742b0d971d61d8c5ba34f69d2e12, PV is appended to the end of the gcc-source PN, thus we need to handle that in devtool and the corresponding test. Part of the fix for [YOCTO #7729]. (From OE-Core rev: 440029dc229a566b9bead1481215d5e5760c5fe6) Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
b7cff751fd
commit
1f15117404
@@ -124,7 +124,7 @@ def _check_compatible_recipe(pn, d):
|
||||
logger.error("The perf recipe does not actually check out source and thus cannot be supported by this tool")
|
||||
return False
|
||||
|
||||
if pn in ['gcc-source', 'kernel-devsrc', 'package-index']:
|
||||
if pn in ['kernel-devsrc', 'package-index'] or pn.startswith('gcc-source'):
|
||||
logger.error("The %s recipe is not supported by this tool" % pn)
|
||||
return False
|
||||
|
||||
|
||||
Reference in New Issue
Block a user