From: Matt Benjamin Date: Fri, 10 Jun 2016 19:09:45 +0000 (-0400) Subject: cmake: fix mis-matched arguments to if warning X-Git-Tag: v11.0.0~227^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=14676374374de08a4921444d7104d79811a3a4bf;p=ceph.git cmake: fix mis-matched arguments to if warning Signed-off-by: Matt Benjamin --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 3bd8a9955d27..ea937f10cd5d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -275,7 +275,7 @@ else(ALLOCATOR) else() message(WARNING "tcmalloc and jemalloc not found, falling back to libc") set(ALLOCATOR "libc") - endif(NOT Tcmalloc_FOUND AND NOT JEMALLOC_FOUND) + endif(Tcmalloc_FOUND) endif(ALLOCATOR) find_package(keyutils REQUIRED)