From f5cae39f5a18ee5889718048752ccd85f4b64786 Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Thu, 24 Apr 2025 10:27:12 +0200 Subject: [PATCH] build: update readthedocs commands The documentation build fails because the meson/ninja commands are outdated. Use the canonical way to build the sources. Signed-off-by: Daniel Wagner --- .readthedocs.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 3505101e8..1dccf4564 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -16,8 +16,8 @@ build: post_install: - pip3 install lxml pre_build: - - meson .build -Ddocs=rst -Ddocs-build=true || cat .build/meson-logs/meson-log.txt - - ninja -C .build + - meson setup .build -Ddocs=rst -Ddocs-build=true || cat .build/meson-logs/meson-log.txt + - meson compile -C .build sphinx: configuration: .build/doc/conf.py