From da0b4b204db67f708771614a7d133581f6d02065 Mon Sep 17 00:00:00 2001 From: Andrej Shadura Date: Wed, 20 Feb 2019 11:16:58 +0000 Subject: [PATCH] =?UTF-8?q?Check=20DEB=5FBUILD=5FOPTIONS=20for=20nodoc,=20?= =?UTF-8?q?not=20nodocs=20(Policy=20=C2=A74.9.1)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index 993ab66..d3d39b0 100755 --- a/debian/rules +++ b/debian/rules @@ -13,7 +13,7 @@ export SOURCE = $(CURDIR)/debian/ dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild override_dh_sphinxdoc: -ifeq (,$(findstring nodocs, $(DEB_BUILD_OPTIONS))) +ifeq (,$(findstring nodoc, $(DEB_BUILD_OPTIONS))) http_proxy='http://127.0.0.1:9/' PYTHONPATH=. python3 -m sphinx -N -q -E -b html docs/ debian/python-click-doc/usr/share/doc/python-click/html/ dh_sphinxdoc endif