From dadbcdd8350af226e8d5280a059dc554ff96cf46 Mon Sep 17 00:00:00 2001 From: Ilya Maximets Date: Thu, 26 Oct 2023 19:55:04 +0200 Subject: [PATCH] readthedocs: Use dirhtml builder. We used this builder before, but from the project configuration on the website. ReadTheDocs doesn't allow to change it there anymore and it doesn't allow to see the full name of the previously used builder (!!), so I failed to migrate it to the config file. The result is that older link like: https://docs.openvswitch.org/en/latest/howto/dpdk/ Now require .html: https://docs.openvswitch.org/en/latest/howto/dpdk.html Fixing now by switching the builder back. Fixes: e388bd73b70d ("readthedocs: Add the configuration file.") Reported-by: Antonin Bas Reported-by: David Marchand Reported-at: https://github.com/openvswitch/ovs-issues/issues/310 Reviewed-by: Antonin Bas Acked-by: Eelco Chaudron Reviewed-by: David Marchand Signed-off-by: Ilya Maximets --- .readthedocs.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index e481e64f1fc..7d505150ecd 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -14,6 +14,7 @@ build: # Build documentation in the "Documentation/" directory with Sphinx. sphinx: configuration: Documentation/conf.py + builder: "dirhtml" # Build all formats: HTML, PDF, ePub. formats: all