diff options
author | Michael Opdenacker <michael.opdenacker@bootlin.com> | 2021-12-08 17:27:56 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-12-09 00:18:39 +0000 |
commit | 525c317153e91b872fb9c3225dc15837e0413000 (patch) | |
tree | 7c22cb1f638a8b060d05ee71522b696ffc8a2c1a /documentation | |
parent | 09296dca79c2c1de3d440b6374f949f8b8faca40 (diff) | |
download | poky-525c317153e91b872fb9c3225dc15837e0413000.tar.gz |
documentation: conf.py: fix version of bitbake objects.inv
Using the Bitbake 1.52 references instead of the master ones,
which may break if some variables or sections are removed.
(From yocto-docs rev: fcb24deb8b3abb8a77a12baa2cdd5ba5aa976f01)
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.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/documentation/conf.py b/documentation/conf.py index 104b49ea02..eff758a7b1 100644 --- a/documentation/conf.py +++ b/documentation/conf.py | |||
@@ -17,6 +17,7 @@ import sys | |||
17 | import datetime | 17 | import datetime |
18 | 18 | ||
19 | current_version = "3.4" | 19 | current_version = "3.4" |
20 | bitbake_version = "1.52" | ||
20 | 21 | ||
21 | # String used in sidebar | 22 | # String used in sidebar |
22 | version = 'Version: ' + current_version | 23 | version = 'Version: ' + current_version |
@@ -90,7 +91,7 @@ extlinks = { | |||
90 | 91 | ||
91 | # Intersphinx config to use cross reference with Bitbake user manual | 92 | # Intersphinx config to use cross reference with Bitbake user manual |
92 | intersphinx_mapping = { | 93 | intersphinx_mapping = { |
93 | 'bitbake': ('https://docs.yoctoproject.org/bitbake/', None) | 94 | 'bitbake': ('https://docs.yoctoproject.org/bitbake/' + bitbake_version, None) |
94 | } | 95 | } |
95 | 96 | ||
96 | # Suppress "WARNING: unknown mimetype for ..." | 97 | # Suppress "WARNING: unknown mimetype for ..." |