summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/lib/devtool/standard.py2
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):
124 logger.error("The perf recipe does not actually check out source and thus cannot be supported by this tool") 124 logger.error("The perf recipe does not actually check out source and thus cannot be supported by this tool")
125 return False 125 return False
126 126
127 if pn in ['gcc-source', 'kernel-devsrc', 'package-index']: 127 if pn in ['kernel-devsrc', 'package-index'] or pn.startswith('gcc-source'):
128 logger.error("The %s recipe is not supported by this tool" % pn) 128 logger.error("The %s recipe is not supported by this tool" % pn)
129 return False 129 return False
130 130