From: Aki Tuomi Date: Mon, 5 Sep 2022 06:54:48 +0000 (+0300) Subject: doc: Install python-wheel when making venv X-Git-Tag: 2.4.0~3615 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9e5efc1bbc0d798dcf1b8a34bb6f06817b656e95;p=thirdparty%2Fdovecot%2Fcore.git doc: Install python-wheel when making venv Sphinx installation requires wheel. --- diff --git a/doc/Makefile.am b/doc/Makefile.am index 648abb89e7..8b650c5abe 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -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