From fe62ce6a4b8edae64b30d1bb54602a0c48c7f8f1 Mon Sep 17 00:00:00 2001 From: Eli Schwartz Date: Wed, 19 Feb 2025 16:43:54 -0500 Subject: [PATCH] ci: avoid building manpages on Fedora It appears that xsltproc is not installed there. It is generally needed for the docs build too, so as a crude CI heuristic, don't build anywhere that docs are disabled. --- contrib/scripts/nm-ci-run.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/scripts/nm-ci-run.sh b/contrib/scripts/nm-ci-run.sh index 4881d110d3..ff9aadf898 100755 --- a/contrib/scripts/nm-ci-run.sh +++ b/contrib/scripts/nm-ci-run.sh @@ -167,6 +167,7 @@ meson setup build \ -D libpsl=false \ -D vapi=false \ -D introspection=$_WITH_DOCS \ + -D man=$_WITH_DOCS \ -D qt=false \ -D crypto=$_WITH_CRYPTO \ -D docs=$_WITH_DOCS \