From: Quentin Young Date: Thu, 1 Mar 2018 15:20:36 +0000 (-0500) Subject: debianpkg: disable pdf build by default X-Git-Tag: frr-5.0-dev~165^2~20 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=351c56649bfd8487676704a10995d736d1d893cc;p=mirror%2Ffrr.git debianpkg: disable pdf build by default Causes build issues on a certain 7 year old platform with a severely out of date sphinx package, requires a full texinfo distribution to build a package and nobody reads book-style manuals in 2018 anyway, its all about the web docs... Signed-off-by: Quentin Young --- diff --git a/debianpkg/backports/ubuntu12.04/debian/rules b/debianpkg/backports/ubuntu12.04/debian/rules index fb951965af..83e5e9689e 100755 --- a/debianpkg/backports/ubuntu12.04/debian/rules +++ b/debianpkg/backports/ubuntu12.04/debian/rules @@ -27,6 +27,9 @@ MULTIPATH ?= 256 WANT_FRR_USER ?= frr WANT_FRR_VTY_GROUP ?= frrvty +# Don't build PDF docs by default +GENERATE_PDF ?= 0 + # #################################### diff --git a/debianpkg/backports/ubuntu14.04/debian/rules b/debianpkg/backports/ubuntu14.04/debian/rules index bb5715b78d..64a3d7b63e 100755 --- a/debianpkg/backports/ubuntu14.04/debian/rules +++ b/debianpkg/backports/ubuntu14.04/debian/rules @@ -27,6 +27,9 @@ MULTIPATH ?= 256 WANT_FRR_USER ?= frr WANT_FRR_VTY_GROUP ?= frrvty +# Don't build PDF docs by default +GENERATE_PDF ?= 0 + # #################################### diff --git a/debianpkg/rules b/debianpkg/rules index 14294f54fe..46f8f48028 100755 --- a/debianpkg/rules +++ b/debianpkg/rules @@ -27,6 +27,9 @@ MULTIPATH ?= 256 WANT_FRR_USER ?= frr WANT_FRR_VTY_GROUP ?= frrvty +# Don't build PDF docs by default +GENERATE_PDF ?= 0 + # ####################################