From 02bccec954dbe7ba26145f9c8d4769ccf3355d5d Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Thu, 7 Feb 2019 15:33:11 +0800 Subject: [PATCH] cmake: use sphinx-build-3 as an alternative on fc30, there is no reason to stick with sphinx-build and ignore sphinx-build-3! Signed-off-by: Kefu Chai --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index df8e6f95090d..78dcfebb9be7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -58,7 +58,7 @@ endif(WITH_CCACHE) option(WITH_MANPAGE "Build man pages." ON) if(WITH_MANPAGE) find_program(SPHINX_BUILD - sphinx-build) + NAMES sphinx-build sphinx-build-3) if(NOT SPHINX_BUILD) message(FATAL_ERROR "Can't find sphinx-build.") endif(NOT SPHINX_BUILD) -- 2.47.3