From 730c91aaaad42c68fdb44bc51fee6c89e0c22910 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 6 May 2009 17:48:01 +0200 Subject: Avoid --nonet when building manpages; xsltproc will already prefer local stylesheets if they are installed. --- lib/talloc/rules.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/talloc/rules.mk b/lib/talloc/rules.mk index 6cee126529..1c83e7b63f 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 *~ */*~ -- cgit