summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorMichael Opdenacker <michael.opdenacker@bootlin.com>2021-12-08 17:17:25 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-12-09 00:18:44 +0000
commitb8f5107e26e3fee89581b42b3189cf9e260034c5 (patch)
tree9218e26d6c9d96c594ae77dbced3f900183caa0e /documentation
parent7edd2be25fdf72187738fc551235df0f24e918bb (diff)
downloadpoky-b8f5107e26e3fee89581b42b3189cf9e260034c5.tar.gz
documentation: conf.py: fix version of bitbake objects.inv
Using the Bitbake 1.50 references instead of the master ones, which may break if some variables or sections are removed. (From yocto-docs rev: 79e90a28ef7f591b1b9b4c41ef7f353bcf17679f) Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com> Reported-by: Quentin Schulz <foss@0leil.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r--documentation/conf.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/documentation/conf.py b/documentation/conf.py
index 28af37d7b1..e42e7b18a7 100644
--- a/documentation/conf.py
+++ b/documentation/conf.py
@@ -17,6 +17,7 @@ import sys
17import datetime 17import datetime
18 18
19current_version = "3.3.4" 19current_version = "3.3.4"
20bitbake_version = "1.50"
20 21
21# String used in sidebar 22# String used in sidebar
22version = 'Version: ' + current_version 23version = 'Version: ' + current_version
@@ -89,7 +90,7 @@ extlinks = {
89 90
90# Intersphinx config to use cross reference with Bitbake user manual 91# Intersphinx config to use cross reference with Bitbake user manual
91intersphinx_mapping = { 92intersphinx_mapping = {
92 'bitbake': ('https://docs.yoctoproject.org/bitbake/', None) 93 'bitbake': ('https://docs.yoctoproject.org/bitbake/' + bitbake_version, None)
93} 94}
94 95
95# -- Options for HTML output ------------------------------------------------- 96# -- Options for HTML output -------------------------------------------------