From cf5a00721f721d5077c73d1f4e812e5c79833fba Mon Sep 17 00:00:00 2001 From: Michael Opdenacker Date: Wed, 8 Dec 2021 17:03:17 +0100 Subject: [PATCH] documentation: conf.py: explicit which version of bitbake objects.inv is used (From yocto-docs rev: e8d6b264f1093f47822ebffc117cb67656fd7e03) Signed-off-by: Michael Opdenacker Reported-by: Quentin Schulz Signed-off-by: Richard Purdie --- documentation/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/documentation/conf.py b/documentation/conf.py index 6eb284e656..0790b50a77 100644 --- a/documentation/conf.py +++ b/documentation/conf.py @@ -17,6 +17,7 @@ import sys import datetime current_version = "3.1.12" +bitbake_version = "1.46" # String used in sidebar version = 'Version: ' + current_version @@ -82,7 +83,7 @@ extlinks = { # Intersphinx config to use cross reference with Bitbake user manual intersphinx_mapping = { - 'bitbake': ('https://docs.yoctoproject.org/bitbake/1.46', None) + 'bitbake': ('https://docs.yoctoproject.org/bitbake/' + bitbake_version, None) } # -- Options for HTML output -------------------------------------------------