aboutsummaryrefslogtreecommitdiff
path: root/third-party/cmake/BuildJeMalloc.cmake
diff options
context:
space:
mode:
authorJohn Szakmeister <john@szakmeister.net>2015-04-15 07:00:36 -0400
committerJohn Szakmeister <john@szakmeister.net>2015-05-11 07:02:47 -0400
commitf0ab7c2ec1518c1e94303747db098c4fec0bb56c (patch)
tree0999e52d8e403f345b15e9448a8d60568f0a0e02 /third-party/cmake/BuildJeMalloc.cmake
parent208013ae399a28d78587979fb35a01bd335a855c (diff)
downloadrneovim-f0ab7c2ec1518c1e94303747db098c4fec0bb56c.tar.gz
rneovim-f0ab7c2ec1518c1e94303747db098c4fec0bb56c.tar.bz2
rneovim-f0ab7c2ec1518c1e94303747db098c4fec0bb56c.zip
third-party: use the official jemalloc tarball
This avoids messages to stderr about VERSION being missing, and allows us to skip the autogen step.
Diffstat (limited to 'third-party/cmake/BuildJeMalloc.cmake')
-rw-r--r--third-party/cmake/BuildJeMalloc.cmake5
1 files changed, 2 insertions, 3 deletions
diff --git a/third-party/cmake/BuildJeMalloc.cmake b/third-party/cmake/BuildJeMalloc.cmake
index c3a0d890fc..9756906d97 100644
--- a/third-party/cmake/BuildJeMalloc.cmake
+++ b/third-party/cmake/BuildJeMalloc.cmake
@@ -10,9 +10,8 @@ ExternalProject_Add(jemalloc
-DTARGET=jemalloc
-P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/DownloadAndExtractFile.cmake
BUILD_IN_SOURCE 1
- CONFIGURE_COMMAND sh ${DEPS_BUILD_DIR}/src/jemalloc/autogen.sh &&
- ${DEPS_BUILD_DIR}/src/jemalloc/configure --enable-cc-silence
- CC=${DEPS_C_COMPILER} --prefix=${DEPS_INSTALL_DIR}
+ CONFIGURE_COMMAND ${DEPS_BUILD_DIR}/src/jemalloc/configure --enable-cc-silence
+ CC=${DEPS_C_COMPILER} --prefix=${DEPS_INSTALL_DIR}
BUILD_COMMAND ""
INSTALL_COMMAND ${MAKE_PRG} install_include install_lib)