From: Kefu Chai Date: Thu, 9 Jun 2016 03:13:48 +0000 (+0800) Subject: cmake: fix the unmatching endif() X-Git-Tag: v11.0.0~130^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0c0760ad58a42bbd40e3c3e097e2913b5423e027;p=ceph.git cmake: fix the unmatching endif() Signed-off-by: Kefu Chai --- 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)