From 3c86d44921896350af4e2cc8ccfc4614366a6308 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 7 Jun 2021 09:37:03 +0200 Subject: mkvenv: Ignore another harmless ldconfig output --- scripts/mkvenv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mkvenv.py b/scripts/mkvenv.py index 58131bc05..ba31638d8 100755 --- a/scripts/mkvenv.py +++ b/scripts/mkvenv.py @@ -335,7 +335,7 @@ def _find_libs() -> Dict[Tuple[str, str], List[str]]: for line in ldconfig_proc.stdout.splitlines(): match = pattern.fullmatch(line.strip()) if match is None: - if 'libs found in cache' not in line: + if 'libs found in cache' not in line and 'Cache generated by:' not in line: utils.print_col(f'Failed to match ldconfig output: {line}', 'yellow') continue -- cgit v1.2.3-54-g00ecf