diff options
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/doc/Makefile.sphinx | 4 | ||||
-rw-r--r-- | bitbake/doc/conf.py | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/bitbake/doc/Makefile.sphinx b/bitbake/doc/Makefile.sphinx index c663c29540..c9518558bb 100644 --- a/bitbake/doc/Makefile.sphinx +++ b/bitbake/doc/Makefile.sphinx | |||
@@ -9,6 +9,10 @@ SOURCEDIR = . | |||
9 | BUILDDIR = _build | 9 | BUILDDIR = _build |
10 | DESTDIR = final | 10 | DESTDIR = final |
11 | 11 | ||
12 | ifeq ($(shell if which $(SPHINXBUILD) >/dev/null 2>&1; then echo 1; else echo 0; fi),0) | ||
13 | $(error "The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx installed") | ||
14 | endif | ||
15 | |||
12 | # Put it first so that "make" without argument is like "make help". | 16 | # Put it first so that "make" without argument is like "make help". |
13 | help: | 17 | help: |
14 | @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | 18 | @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) |
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, |