diff options
author | David Robillard <d@drobilla.net> | 2023-08-31 23:05:28 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-09-22 23:54:50 -0400 |
commit | f2e5a661cbb6022b60104173990450782aa6ac14 (patch) | |
tree | 7244d15b238c9ab3f5fd951da22c29a1752abcb7 | |
parent | 702830465ac87867fa4051a9be5036ef0b795c13 (diff) | |
download | serd-f2e5a661cbb6022b60104173990450782aa6ac14.tar.gz serd-f2e5a661cbb6022b60104173990450782aa6ac14.tar.bz2 serd-f2e5a661cbb6022b60104173990450782aa6ac14.zip |
Fix documentation build in a virtualenv
-rw-r--r-- | doc/meson.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/meson.build b/doc/meson.build index 7180ec28..95488fc0 100644 --- a/doc/meson.build +++ b/doc/meson.build @@ -1,4 +1,4 @@ -# Copyright 2020-2022 David Robillard <d@drobilla.net> +# Copyright 2020-2023 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC docdir = get_option('datadir') / 'doc' @@ -33,7 +33,7 @@ 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() + if not pymod.find_installation('python3', modules: doc_modules, required: false).found() warning('Missing sphinx_lv2_theme module, falling back to alabaster') endif |