From: Jelmer Vernooij Date: Wed, 6 May 2009 15:48:01 +0000 (+0200) Subject: Avoid --nonet when building manpages; xsltproc will already prefer local X-Git-Tag: tdb-1.1.5~712 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=730c91aaaad42c68fdb44bc51fee6c89e0c22910;p=thirdparty%2Fsamba.git Avoid --nonet when building manpages; xsltproc will already prefer local stylesheets if they are installed. --- diff --git a/lib/talloc/rules.mk b/lib/talloc/rules.mk index 6cee126529c..1c83e7b63fd 100644 --- a/lib/talloc/rules.mk +++ b/lib/talloc/rules.mk @@ -9,10 +9,10 @@ showflags:: $(CC) $(PICFLAG) -o $@ -c $< $(CFLAGS) .3.xml.3: - -test -z "$(XSLTPROC)" || $(XSLTPROC) --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< + -test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $< .xml.html: - -test -z "$(XSLTPROC)" || $(XSLTPROC) --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $< + -test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $< distclean:: rm -f *~ */*~