aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/jemalloc.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/allocators/jemalloc.py')
-rw-r--r--src/allocators/jemalloc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/allocators/jemalloc.py b/src/allocators/jemalloc.py
index c64f5af..f3f43cb 100644
--- a/src/allocators/jemalloc.py
+++ b/src/allocators/jemalloc.py
@@ -15,6 +15,6 @@ class Jemalloc (src.allocator.Allocator):
kwargs["LD_PRELOAD"] = "{srcdir}/lib/libjemalloc.so"
kwargs["build_cmds"] = ["cd {srcdir}; ./configure --prefix={dir} CFLAGS=-O2",
"cd {srcdir}; make -j4",
- "mkdir {dir}"]
+ "mkdir -p {dir}"]
super().__init__(name, **kwargs)