Skip to content
This repository has been archived by the owner on May 14, 2024. It is now read-only.

Fix 'make html' build failures #55

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

# You can set these variables from the command line.
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SPHINXBUILD = sphinx-build -v
PAPER =
BUILDDIR = build
FILENAME = $(shell cd source && python -c "from conf import basic_filename; print basic_filename")
FILENAME = $(shell cd source && python -c "from conf import basic_filename; print(basic_filename)")


# Internal variables.
Expand Down
2 changes: 1 addition & 1 deletion source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = ['sphinx.ext.todo', 'sphinx.ext.ifconfig', 'sphinx_tabs.tabs', 'sphinxcontrib.jinja', 'sphinx-prompt']
extensions = ['sphinx.ext.todo', 'sphinx.ext.ifconfig', 'sphinx_tabs.tabs', 'sphinx_jinja', 'sphinx-prompt']
numfig = True

# The suffix of source filenames.
Expand Down
2 changes: 1 addition & 1 deletion source/riscv-sphinx/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

{% endif %}

<link rel="stylesheet" href="{{ pathto('_static/css/' + style, 1) }}" type="text/css" />
<link rel="stylesheet" href="{{ pathto('_static/css/theme.css', 1) }}" type="text/css" />

{% for cssfile in css_files %}
<link rel="stylesheet" href="{{ pathto(cssfile, 1) }}" type="text/css" />
Expand Down