From e2cda2dc652a32c2e40a03eb4e722fdfe15327cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Weigert?= Date: Fri, 24 Mar 2017 17:49:20 +0100 Subject: [PATCH] Update CMakeLists.txt remove doc-man target in doc/CMakeLists.txt https://github.com/owncloud/client/issues/2153 --- doc/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index dbca98a7d8..ad3825223c 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -20,9 +20,9 @@ if(SPHINX_FOUND) configure_file("${CMAKE_CURRENT_SOURCE_DIR}/conf.py.in" conf.py @ONLY) if(WITH_DOC) - add_custom_target(doc ALL DEPENDS doc-html doc-man COMMENT "Building documentation...") + add_custom_target(doc ALL DEPENDS doc-html COMMENT "Building documentation...") else(WITH_DOC) - add_custom_target(doc DEPENDS doc-html doc-man COMMENT "Building documentation...") + add_custom_target(doc DEPENDS doc-html COMMENT "Building documentation...") endif(WITH_DOC) if (EXISTS "${CMAKE_CURRENT_SOURCE_DIR}/ocdoc/_shared_assets")