From c38b0550beedd10922ec067830920c08d9f865cf Mon Sep 17 00:00:00 2001 From: Frederik Seiffert Date: Fri, 25 Oct 2024 09:39:46 +0200 Subject: [PATCH] libcurl: disable building man pages --- phases/19-libcurl.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/phases/19-libcurl.sh b/phases/19-libcurl.sh index 4051335..2efb180 100755 --- a/phases/19-libcurl.sh +++ b/phases/19-libcurl.sh @@ -25,7 +25,9 @@ ${CMAKE} .. \ -DBUILD_CURL_EXE=NO \ -DCURL_CA_BUNDLE=NONE `# disable CA bundle path, needs to be read at runtime from app bundle` \ -DCMAKE_FIND_ROOT_PATH=${INSTALL_PREFIX} `# make CMake look for OpenSSL in installation directory` \ - -DUSE_LIBIDN2=NO \ # Prevent accidental detection of an idn2 installation + -DUSE_LIBIDN2=NO `# Prevent accidental detection of an idn2 installation` \ + -DBUILD_LIBCURL_DOCS=NO \ + -DBUILD_MISC_DOCS=NO \ echo -e "\n### Building" make -j${MAKE_JOBS}