From: David Sommerseth Date: Mon, 20 Jul 2020 10:38:22 +0000 (+0200) Subject: travis: Fix make distcheck failure X-Git-Tag: v2.5_beta1~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df85950a61879517ae77472eeef526cdd1906662;p=thirdparty%2Fopenvpn.git travis: Fix make distcheck failure Since commit f500c49c8e0, the man page and html documentation need to be generated when building out of the git repository, as both openvpn.8 and openvpn.8.html will be shipped pregenerated inside the tarball generated by 'make dist'. Travis was lacking the python-docutils package, which made the 'make distcheck' build test fail. Signed-off-by: David Sommerseth Acked-by: Arne Schwabe Message-Id: <20200720103822.26088-1-davids@openvpn.net> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg20497.html Signed-off-by: Gert Doering --- diff --git a/.travis.yml b/.travis.yml index 925d09ea8..b154277e2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -111,7 +111,7 @@ jobs: addons: apt: update: true - packages: [ liblzo2-dev, libpam0g-dev, liblz4-dev, linux-libc-dev, man2html, mingw-w64, clang-9, libcmocka-dev ] + packages: [ liblzo2-dev, libpam0g-dev, liblz4-dev, linux-libc-dev, man2html, mingw-w64, clang-9, libcmocka-dev, python3-docutils ] homebrew: update: true packages: [ lzo, lz4, cmocka ]