summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-09-02 19:33:23 -0400
committerDavid Robillard <d@drobilla.net>2023-09-02 19:33:23 -0400
commitfc9c89c66dcdfe296e3b59344cddf4ba52b25be6 (patch)
treeb96198966d515824cb1d248dd8b5c81c7b05462e /doc
parent3d880e00f3a0d7129b642002c3fb51ddbb56ac96 (diff)
downloadzix-fc9c89c66dcdfe296e3b59344cddf4ba52b25be6.tar.gz
zix-fc9c89c66dcdfe296e3b59344cddf4ba52b25be6.tar.bz2
zix-fc9c89c66dcdfe296e3b59344cddf4ba52b25be6.zip
Fix documentation build in a virtualenv
Diffstat (limited to 'doc')
-rw-r--r--doc/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/meson.build b/doc/meson.build
index 492b84e..11dad4f 100644
--- a/doc/meson.build
+++ b/doc/meson.build
@@ -24,7 +24,8 @@ if build_docs
# Warn if the "official" theme isn't present
pymod = import('python')
doc_modules = ['sphinx_lv2_theme']
- if not pymod.find_installation(modules: doc_modules, required: false).found()
+ py = pymod.find_installation('python3', modules: doc_modules, required: false)
+ if not py.found()
warning('Missing sphinx_lv2_theme module, falling back to alabaster')
endif