aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--allocbench/allocator.py2
1 files changed, 1 insertions, 1 deletions
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"