From 059120003fddb833027d85ccf58a2e3e954221cc Mon Sep 17 00:00:00 2001 From: Tim Wojtulewicz Date: Wed, 12 Jan 2022 10:16:15 -0700 Subject: [PATCH] Fix --with-jemalloc configure option on FreeBSD --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 582f060c49..2fc7f6d618 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -296,7 +296,7 @@ endif () if (ENABLE_JEMALLOC) if (${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD") - if (DEFINED ${JEMALLOC_ROOT_DIR}) + if (DEFINED JEMALLOC_ROOT_DIR) # Look for jemalloc at a specific path find_package(JeMalloc) else()