diff options
author | Jason Evans <je@fb.com> | 2012-04-23 19:46:46 (GMT) |
---|---|---|
committer | Jason Evans <je@fb.com> | 2012-04-23 19:46:46 (GMT) |
commit | a4936ce4d635ef129be201f53cdc0786315ac3b6 (patch) | |
tree | f49fa76b8d8fbb3f131e927df71fe14ff7573320 /bin | |
parent | 461ad5c87ae5f89cd086e47b31372e9123dcfcdf (diff) | |
download | jemalloc-a4936ce4d635ef129be201f53cdc0786315ac3b6.zip jemalloc-a4936ce4d635ef129be201f53cdc0786315ac3b6.tar.gz jemalloc-a4936ce4d635ef129be201f53cdc0786315ac3b6.tar.bz2 |
Fix jemalloc.sh code generation.
Fix jemalloc.sh code generation by adding @sorev@ and using it instead
of @SOREV@ (which contains Makefile-specific variables).
Diffstat (limited to 'bin')
-rw-r--r-- | bin/jemalloc.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/jemalloc.sh.in b/bin/jemalloc.sh.in index cdf3673..58683f5 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.@SOREV@ +@LD_PRELOAD_VAR@=${libdir}/libjemalloc.@sorev@ export @LD_PRELOAD_VAR@ exec "$@" |