From dff89518bdbfce64eb511ffd6d9490d9102ef360 Mon Sep 17 00:00:00 2001 From: Nicolas Dechesne Date: Mon, 9 Nov 2020 15:32:15 +0100 Subject: [PATCH] conf: use bitbake 1.48 branch for intersphinx We now publish the branch 1.48 of bitbake docs to https://docs.yoctoproject.org/bitbake/1.48/ yocto-docs can refer to bitbake documentation using the intersphinx extension. The gatesgarth docs should refer to the 1.48 branch of bitbake, not the development branch. (From yocto-docs rev: 09ae216a022b85fe1f03b55e6341e258c7215e20) Signed-off-by: Nicolas Dechesne Signed-off-by: Richard Purdie --- documentation/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/documentation/conf.py b/documentation/conf.py index 5d8a7af300..ed8c5c0330 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -82,7 +82,7 @@ extlinks = { # Intersphinx config to use cross reference with Bitbake user manual intersphinx_mapping = { - 'bitbake': ('https://docs.yoctoproject.org/bitbake/', None) + 'bitbake': ('https://docs.yoctoproject.org/bitbake/1.48', None) } # -- Options for HTML output -------------------------------------------------