]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
doc: Install python-wheel when making venv
authorAki Tuomi <aki.tuomi@open-xchange.com>
Mon, 5 Sep 2022 06:54:48 +0000 (09:54 +0300)
committerAki Tuomi <aki.tuomi@open-xchange.com>
Wed, 28 Sep 2022 09:24:34 +0000 (12:24 +0300)
Sphinx installation requires wheel.

doc/Makefile.am

index 648abb89e74ab9f9a19843e9a3e54994f74071bd..8b650c5abe9797b1973339df8dd118533e4d7570 100644 (file)
@@ -30,6 +30,7 @@ $(documentation_sources)/requirements.txt:
 
 venv: $(documentation_sources)/requirements.txt
        $(AM_V_GEN)$(PYTHON) -m venv venv && \
+               venv/bin/pip $(AM_V_Q) install wheel && \
                venv/bin/pip $(AM_V_Q) install -r "$(documentation_sources)/requirements.txt"
 
 html: venv