Merge pull request #84 from kergoth/improve-messages

external-toolchain: filter out .debug for parse time check
This commit is contained in:
Christopher Larson
2015-07-29 12:03:52 -07:00

View File

@@ -92,6 +92,7 @@ python () {
pattern = d.getVar('EXTERNAL_PROVIDE_PATTERN', True)
if pattern is None:
files = list(gather_pkg_files(d))
files = filter(lambda f: '.debug' not in f, files)
expanded = expand_paths(files, mirrors)
paths = search_sysroots(expanded, sysroots)
if not any(f for p, f in paths):