Run Sphinx without the -W flag when building documentation origin/1.3
authorPetri Lehtinen <petri@digip.org>
Mon, 6 Sep 2010 17:46:14 +0000 (20:46 +0300)
committerPetri Lehtinen <petri@digip.org>
Mon, 6 Sep 2010 17:46:15 +0000 (20:46 +0300)
In "make html", don't use the -W flag with Sphinx. This makes it
possible to create the documentation with Sphinx 1.0 without errors,
as the warning about using old-style C markup isn't turned to an
error.

Don't build documentation in "make check". Instead, add a new make
target "check-doc" to build the documentation with the -W flag.

Makefile.am
doc/Makefile.am

index a141cd5..173c7de 100644 (file)
@@ -1,7 +1,8 @@
 EXTRA_DIST = CHANGES LICENSE README.rst
 SUBDIRS = doc src test
 
-check-local: html
+check-doc:
+       $(MAKE) SPHINXOPTS_EXTRA=-W html
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = jansson.pc
index 74a715c..1f2d855 100644 (file)
@@ -3,7 +3,7 @@ EXTRA_DIST = conf.py apiref.rst changes.rst conformance.rst             \
        ext/refcounting.py
 
 SPHINXBUILD = sphinx-build
-SPHINXOPTS = -d _build/doctrees -W
+SPHINXOPTS = -d _build/doctrees $(SPHINXOPTS_EXTRA)
 
 html-local:
        $(SPHINXBUILD) -b html $(SPHINXOPTS) $(srcdir) _build/html