diff options
author | Pauli Virtanen <pav@iki.fi> | 2009-04-13 19:48:16 +0000 |
---|---|---|
committer | Pauli Virtanen <pav@iki.fi> | 2009-04-13 19:48:16 +0000 |
commit | 9d79dfef3a5d0c814cd65e946ad5b413e1165def (patch) | |
tree | a11e10430de7a2c9a36dfedb938e1afe7c3eb3c9 | |
parent | 1d6ed796d0e7f32ba6af4a5e7d970fca79fc7168 (diff) | |
download | numpy-9d79dfef3a5d0c814cd65e946ad5b413e1165def.tar.gz |
docs: fix inverted test in makefile
-rw-r--r-- | doc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile index d0012fff2..82dcc741c 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -9,7 +9,7 @@ SPHINXOPTS = SPHINXBUILD = LANG=C sphinx-build PAPER = -NEED_AUTOSUMMARY = $(shell $(PYTHON) -c 'import sphinx; print sphinx.__version__ >= "0.7" and "1" or ""') +NEED_AUTOSUMMARY = $(shell $(PYTHON) -c 'import sphinx; print sphinx.__version__ < "0.7" and "1" or ""') # Internal variables. PAPEROPT_a4 = -D latex_paper_size=a4 |