summaryrefslogtreecommitdiffstats
path: root/scripts/lib/devtool/search.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/devtool/search.py')
-rw-r--r--scripts/lib/devtool/search.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/search.py b/scripts/lib/devtool/search.py
index d24040df37..d81cdd876f 100644
--- a/scripts/lib/devtool/search.py
+++ b/scripts/lib/devtool/search.py
@@ -65,7 +65,7 @@ def search(args, config, basepath, workspace):
65 splitline = line.split(':', 1) 65 splitline = line.split(':', 1)
66 key = splitline[0] 66 key = splitline[0]
67 value = splitline[1].strip() 67 value = splitline[1].strip()
68 if key in ['PKG_%s' % pkg, 'DESCRIPTION', 'FILES_INFO'] or key.startswith('FILERPROVIDES_'): 68 if key in ['PKG:%s' % pkg, 'DESCRIPTION', 'FILES_INFO'] or key.startswith('FILERPROVIDES_'):
69 if keyword_rc.search(value): 69 if keyword_rc.search(value):
70 match = True 70 match = True
71 break 71 break