From 44fed83d29f1b5dee484b53c881010da895110ff Mon Sep 17 00:00:00 2001 From: Florian Fischer Date: Tue, 20 Aug 2019 23:15:01 +0200 Subject: fix broken build command for tbbmalloc --- src/allocators/tbbmalloc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/allocators') diff --git a/src/allocators/tbbmalloc.py b/src/allocators/tbbmalloc.py index a5b28b7..d96f40b 100644 --- a/src/allocators/tbbmalloc.py +++ b/src/allocators/tbbmalloc.py @@ -16,7 +16,7 @@ class TBBMalloc (src.allocator.Allocator): kwargs["LD_PRELOAD"] = "{dir}/libtbbmalloc.so" kwargs["build_cmds"] = ["cd {srcdir}; make tbbmalloc -j4", "mkdir -p {dir}", - 'ln -f -s $(find {srcdir} -executable -name "*libtbbmalloc_proxy.so*") {dir}/libtbbmalloc.so | head -1'] + 'ln -f -s $(find {srcdir} -executable -name "*libtbbmalloc_proxy.so*" | head -1) {dir}/libtbbmalloc.so'] super().__init__(name, **kwargs) -- cgit v1.2.3