summaryrefslogtreecommitdiffstats
path: root/common/waf.py
diff options
context:
space:
mode:
authorAmar Takhar <amar@rtems.org>2016-01-19 19:33:59 -0500
committerAmar Takhar <verm@darkbeer.org>2016-05-02 20:51:24 -0400
commit89f234787ed0f125e5947ee30f322007f4f0ed38 (patch)
tree7d1746b2dffc181d1314ccde99fdc88ace7cfaa6 /common/waf.py
parentAdd minimum version check for Sphinx. (diff)
downloadrtems-docs-89f234787ed0f125e5947ee30f322007f4f0ed38.tar.bz2
Fix typo and add another dependency.
Diffstat (limited to 'common/waf.py')
-rw-r--r--common/waf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/waf.py b/common/waf.py
index aa02722..cf679c9 100644
--- a/common/waf.py
+++ b/common/waf.py
@@ -52,8 +52,8 @@ def cmd_configure(ctx):
ctx.load('tex')
- if not ctx.env.PDFLATEX:
- conf.fatal('The program LaTex is required')
+ if not ctx.env.PDFLATEX or not ctx.env.MAKEINDEX:
+ ctx.fatal('The programs pdflatex and makeindex are required')
ctx.find_program("sphinx-build", var="BIN_SPHINX_BUILD", mandatory=True)
ctx.find_program("aspell", var="BIN_ASPELL", mandatory=False)