]> git.notmuchmail.org Git - notmuch/commitdiff
doc/conf.py: Remove _static from html_static_path
authorW. Trevor King <wking@tremily.us>
Sat, 10 May 2014 15:55:21 +0000 (08:55 -0700)
committerDavid Bremner <david@tethera.net>
Wed, 28 May 2014 12:45:45 +0000 (09:45 -0300)
Avoid:

  $ make HAVE_SPHINX=1 sphinx-html
  python ./doc/mkdocdeps.py ./doc doc/_build doc/docdeps.mk
  sphinx-build -b html -d doc/_build/doctrees -q ./doc doc/_build/html
  Making output directory...
  WARNING: html_static_path entry '/home/wking/src/notmuch/notmuch/doc/_static' does not exist

because we have no static source in doc/_static.

doc/conf.py

index a926fe42048859ee915267837cd4b2461972ea67..70ba1b8a4e1bf772c16fbeb72d8148ea7c40a182 100644 (file)
@@ -42,7 +42,7 @@ html_theme = 'default'
 # Add any paths that contain custom static files (such as style sheets) here,
 # relative to this directory. They are copied after the builtin static files,
 # so a file named "default.css" will overwrite the builtin "default.css".
-html_static_path = ['_static']
+html_static_path = []
 
 # Output file base name for HTML help builder.
 htmlhelp_basename = 'notmuchdoc'