diff options
author | David Robillard <d@drobilla.net> | 2020-11-25 17:44:40 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-11-25 17:44:40 +0100 |
commit | 9a097afe77c72723d317f9e0449a9e2ad8f1b442 (patch) | |
tree | 150327c2d1aaeebb46518d47223898a742917d34 | |
parent | efb12030a1179dfd567f6c1b737a49291eebe19d (diff) | |
download | autowaf-9a097afe77c72723d317f9e0449a9e2ad8f1b442.tar.gz autowaf-9a097afe77c72723d317f9e0449a9e2ad8f1b442.tar.bz2 autowaf-9a097afe77c72723d317f9e0449a9e2ad8f1b442.zip |
Hack Sphinx tool to not load gnu_dirs
I do not use this tool because it's not quite right. It doesn't seem super
appropriate for tools to be loading things like this anyway, requiring DOCDIR
to be defined in whatever way the project deems fit seems fine.
-rw-r--r-- | extras/sphinx.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/extras/sphinx.py b/extras/sphinx.py index 71d1028..4567014 100644 --- a/extras/sphinx.py +++ b/extras/sphinx.py @@ -27,7 +27,6 @@ from waflib.TaskGen import feature, after_method def configure(cnf): """Check if sphinx-build program is available and loads gnu_dirs tool.""" cnf.find_program('sphinx-build', var='SPHINX_BUILD', mandatory=False) - cnf.load('gnu_dirs') @feature('sphinx') |