mirror of
https://github.com/thead-yocto-mirror/meta-external-toolchain
synced 2026-06-21 08:52:27 +02:00
Merge pull request #84 from kergoth/improve-messages
external-toolchain: filter out .debug for parse time check
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user