diff options
| author | Nicolas Dechesne <nicolas.dechesne@linaro.org> | 2020-10-05 14:19:32 +0200 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-06 13:52:25 +0100 |
| commit | 18016c1ef86f6b6307399229b496547ee6a77291 (patch) | |
| tree | 20d4514b149aca3a01650bd430400c762d3b52ca /bitbake/doc/conf.py | |
| parent | ac8257be721b8f4600d86f2073ce74bfb8fe360d (diff) | |
| download | poky-18016c1ef86f6b6307399229b496547ee6a77291.tar.gz | |
bitbake: docs: sphinx: report errors when dependencies are not met
(Bitbake rev: 9ae5cce76693d7c12396cee1183aaf371bb3d66c)
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 | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bitbake/doc/conf.py b/bitbake/doc/conf.py index 197f2757aa..354dff36f7 100644 --- a/bitbake/doc/conf.py +++ b/bitbake/doc/conf.py | |||
| @@ -73,7 +73,13 @@ rst_prolog = """ | |||
| 73 | # The theme to use for HTML and HTML Help pages. See the documentation for | 73 | # The theme to use for HTML and HTML Help pages. See the documentation for |
| 74 | # a list of builtin themes. | 74 | # a list of builtin themes. |
| 75 | # | 75 | # |
| 76 | html_theme = 'sphinx_rtd_theme' | 76 | try: |
| 77 | import sphinx_rtd_theme | ||
| 78 | html_theme = 'sphinx_rtd_theme' | ||
| 79 | except ImportError: | ||
| 80 | sys.stderr.write("The Sphinx sphinx_rtd_theme HTML theme was not found.\ | ||
| 81 | \nPlease make sure to install the sphinx_rtd_theme python package.\n") | ||
| 82 | sys.exit(1) | ||
| 77 | 83 | ||
| 78 | # Add any paths that contain custom static files (such as style sheets) here, | 84 | # Add any paths that contain custom static files (such as style sheets) here, |
| 79 | # relative to this directory. They are copied after the builtin static files, | 85 | # relative to this directory. They are copied after the builtin static files, |
