diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-05-06 17:48:01 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-05-06 17:48:01 +0200 |
commit | 730c91aaaad42c68fdb44bc51fee6c89e0c22910 (patch) | |
tree | abb50ef3cb4e7c06b212a35106875fac940f57f2 /lib | |
parent | 4a4dc776b2f0ca813abcf4f47f0d5721f75f3e6a (diff) | |
download | samba-730c91aaaad42c68fdb44bc51fee6c89e0c22910.tar.gz samba-730c91aaaad42c68fdb44bc51fee6c89e0c22910.tar.bz2 samba-730c91aaaad42c68fdb44bc51fee6c89e0c22910.zip |
Avoid --nonet when building manpages; xsltproc will already prefer local
stylesheets if they are installed.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/talloc/rules.mk | 4 |
1 files 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 *~ */*~ |