mirror of
https://github.com/MariaDB/server.git
synced 2025-10-12 12:25:37 +03:00
10 lines
145 B
Bash
10 lines
145 B
Bash
#!/bin/sh
|
|
|
|
prefix=/usr/local
|
|
exec_prefix=/usr/local
|
|
libdir=${exec_prefix}/lib
|
|
|
|
LD_PRELOAD=${libdir}/libjemalloc.so.1
|
|
export LD_PRELOAD
|
|
exec "$@"
|