From f52bf1616e60dc19315d124da25068b39796800e Mon Sep 17 00:00:00 2001 From: Rui Carmo Date: Thu, 21 Dec 2023 18:24:22 +0000 Subject: [PATCH] macOS bundle does not require manpages By disabling them, we also do away with the need to have docbook-xsl installed (which, incidentally, is not properly detected when installed via `brew`) --- scripts/bundle-mac-os.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/bundle-mac-os.sh b/scripts/bundle-mac-os.sh index 0489875ee..fde157a44 100755 --- a/scripts/bundle-mac-os.sh +++ b/scripts/bundle-mac-os.sh @@ -107,6 +107,7 @@ echo "build target [$DEPLOYMENT_TARGET]" CMAKE_ARGS="-DCMAKE_SKIP_INSTALL_ALL_DEPENDENCY=ON \ -DCMAKE_VERBOSE_MAKEFILE=ON \ -DCMAKE_BUILD_TYPE=Release \ + -DWITH_MANPAGES=OFF \ -DBUILD_SHARED_LIBS=ON \ -DCMAKE_OSX_ARCHITECTURES=$CMAKE_ARCHS \ -DCMAKE_OSX_DEPLOYMENT_TARGET=$DEPLOYMENT_TARGET \