From: Sandro Santilli Date: Wed, 29 Feb 2012 10:08:37 +0000 (+0000) Subject: Have XSLTPROCFLAGS default to --nonet X-Git-Tag: 2.0.0beta1~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d7084d39ee5b89f11dbc5e74ea945f5831da7f6;p=postgis Have XSLTPROCFLAGS default to --nonet This way you can drop by redefining it as in: make XSLTPROCFLAGS= git-svn-id: http://svn.osgeo.org/postgis/trunk@9344 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/doc/Makefile.in b/doc/Makefile.in index f9496f289..fac4f0923 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -21,6 +21,14 @@ XSLTPROC=@XSLTPROC@ XSLBASE=@XSLBASE@ XMLLINT=@XMLLINT@ +# To allow network access use: +# +# make html XSLTPROCFLAGS= +# +ifeq ($(XSLTPROCFLAGS),) + XSLTPROCFLAGS=--nonet +endif + XSLTPROC_COMMONOPTS= \ --param section.autolabel 1 \ --param section.label.includes.component.label 1 \