From b8d317203d712fe19d26291df345a4572c615885 Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Wed, 7 Apr 2021 19:40:12 +0200 Subject: [alloctor.py] fix ldconfig output parsing --- allocbench/allocator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/allocbench/allocator.py b/allocbench/allocator.py index db5f988..229feb9 100644 --- a/allocbench/allocator.py +++ b/allocbench/allocator.py @@ -39,7 +39,7 @@ for line in run_cmd(["ldconfig", "-v", "-N"], capture=True).stdout.splitlines(): if not line.startswith('\t'): - LIBRARY_PATH += line + LIBRARY_PATH += line.split(':')[0] SRCDIR = Path(get_allocbench_build_dir()) / "src" -- cgit v1.2.3