diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2015-05-07 14:52:24 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-05-07 14:59:15 +0100 |
commit | 440029dc229a566b9bead1481215d5e5760c5fe6 (patch) | |
tree | 9107d500250873adedfa277d9e5e3454de28ebd2 /scripts | |
parent | f9bad5aeb507f5b3c1346118011c7766c44d9ba4 (diff) | |
download | openembedded-core-440029dc229a566b9bead1481215d5e5760c5fe6.tar.gz openembedded-core-440029dc229a566b9bead1481215d5e5760c5fe6.tar.bz2 openembedded-core-440029dc229a566b9bead1481215d5e5760c5fe6.zip |
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].
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/devtool/standard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index cb4b57be92..81a44d4513 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py @@ -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 |