From 5b9ac9e636bdbc66b471194b0c093e89bf92f7ee Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Fri, 24 Jul 2015 14:10:06 -0700 Subject: [PATCH] external-toolchain: filter out .debug for parse time check The skip message shows all the paths we're searching for, and it's bloated with a ton of .debug entries, so remove them, we don't care about them in this context anyway. Signed-off-by: Christopher Larson --- classes/external-toolchain.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/classes/external-toolchain.bbclass b/classes/external-toolchain.bbclass index 1923a23..7fa3c67 100644 --- a/classes/external-toolchain.bbclass +++ b/classes/external-toolchain.bbclass @@ -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):