aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMike Hommey <mh@glandium.org>2012-04-18 18:29:40 +0200
committerJason Evans <jasone@canonware.com>2012-04-18 11:53:16 -0700
commit85221d5d75be26ce8941cc08a798e69ecdd0a57c (patch)
tree9598e6567c40ef44631e535f56269211ae705f06 /bin
parent78f7352259768f670f8e1f9b000388dd32b62493 (diff)
downloadjemalloc-85221d5d75be26ce8941cc08a798e69ecdd0a57c.tar.gz
Make versioned shared library suffix configurable
This allows for different patterns for file names: - lib.so.version for e.g. Linux - lib.version.dylib for OSX (which is much more common than lib.dylib.version) - lib.dll for Windows (no version at all).
Diffstat (limited to 'bin')
-rw-r--r--bin/jemalloc.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/jemalloc.sh.in b/bin/jemalloc.sh.in
index 56cdfaf..cdf3673 100644
--- a/bin/jemalloc.sh.in
+++ b/bin/jemalloc.sh.in
@@ -4,6 +4,6 @@ prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
-@LD_PRELOAD_VAR@=${libdir}/libjemalloc.@so@.@rev@
+@LD_PRELOAD_VAR@=${libdir}/libjemalloc.@SOREV@
export @LD_PRELOAD_VAR@
exec "$@"