From 15dd70cd5a76a847c50002a1e75e118d8b9bc42b Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Fri, 22 May 2015 10:38:29 -0400 Subject: [PATCH] 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 --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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) -- 2.47.3