diff options
author | Nicolas Dechesne <nicolas.dechesne@linaro.org> | 2020-09-08 16:58:17 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-09-16 18:14:08 +0100 |
commit | 28a7aa73dbb42f94c8cc07a89c89c8a64aacc4f8 (patch) | |
tree | 7433059b1d0c1a09bac84247bd04f7e2d009e2f8 /bitbake/doc/conf.py | |
parent | 9264c71bfc5e7f9af73dd9f7ebdb68aab8c18f48 (diff) | |
download | poky-28a7aa73dbb42f94c8cc07a89c89c8a64aacc4f8.tar.gz |
bitbake: sphinx: conf: enable extlinks extension
(Bitbake rev: 3e940d93c7513413a93a910122b1dd82870044b1)
Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/doc/conf.py')
-rw-r--r-- | bitbake/doc/conf.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/bitbake/doc/conf.py b/bitbake/doc/conf.py index 722c79230b..197f2757aa 100644 --- a/bitbake/doc/conf.py +++ b/bitbake/doc/conf.py | |||
@@ -32,6 +32,11 @@ copyright = '2004-%s, Richard Purdie, Chris Larson, and Phil Blundell' \ | |||
32 | % datetime.datetime.now().year | 32 | % datetime.datetime.now().year |
33 | author = 'Richard Purdie, Chris Larson, and Phil Blundell' | 33 | author = 'Richard Purdie, Chris Larson, and Phil Blundell' |
34 | 34 | ||
35 | # external links and substitutions | ||
36 | extlinks = { | ||
37 | 'yocto_docs': ('https://docs.yoctoproject.org%s', None), | ||
38 | 'oe_lists': ('https://lists.openembedded.org%s', None), | ||
39 | } | ||
35 | 40 | ||
36 | # -- General configuration --------------------------------------------------- | 41 | # -- General configuration --------------------------------------------------- |
37 | 42 | ||
@@ -40,6 +45,7 @@ author = 'Richard Purdie, Chris Larson, and Phil Blundell' | |||
40 | # ones. | 45 | # ones. |
41 | extensions = [ | 46 | extensions = [ |
42 | 'sphinx.ext.autosectionlabel', | 47 | 'sphinx.ext.autosectionlabel', |
48 | 'sphinx.ext.extlinks', | ||
43 | ] | 49 | ] |
44 | autosectionlabel_prefix_document = True | 50 | autosectionlabel_prefix_document = True |
45 | 51 | ||