From: Casey Bodley Date: Fri, 22 May 2015 14:38:29 +0000 (-0400) Subject: cmake: skip man/CMakeLists.txt X-Git-Tag: v9.0.2~106^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=15dd70cd5a76a847c50002a1e75e118d8b9bc42b;p=ceph.git cmake: skip man/CMakeLists.txt man pages have to be preprocessed now, and can't be installed directly. skip installing them until we add the cmake-fu to copy what man/Makefile.am is doing Signed-off-by: Casey Bodley --- diff --git a/CMakeLists.txt b/CMakeLists.txt index b0779fcc596..3cae26ae35f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -241,4 +241,6 @@ set(OperatingSystem "Mac OS X") endif(${CMAKE_SYSTEM_NAME} MATCHES "Darwin") add_subdirectory(src) -add_subdirectory(man) + +# man pages must be preprocessed, not supported yet +#add_subdirectory(man)