summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-06-07 09:37:03 +0200
committerFlorian Bruhin <me@the-compiler.org>2021-06-07 10:04:06 +0200
commit3c86d44921896350af4e2cc8ccfc4614366a6308 (patch)
tree3ccccc5cdd45286499ab780693608d6773367f5d
parente76eb4672aa516abd6a6ead823ea781974765ccb (diff)
downloadqutebrowser-3c86d44921896350af4e2cc8ccfc4614366a6308.tar.gz
qutebrowser-3c86d44921896350af4e2cc8ccfc4614366a6308.zip
mkvenv: Ignore another harmless ldconfig output
-rwxr-xr-xscripts/mkvenv.py2
1 files changed, 1 insertions, 1 deletions
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