summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2006-08-31 09:18:06 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:16:57 -0500
commitcca9dbb66f605edc950dc048eb51cc39d14a01d3 (patch)
treeb83e1774be3ff2319647b2dd900a6a5592a2a809
parente905fed4e03a50f8c17b9ff0726fccc9558ca8c4 (diff)
downloadsamba-cca9dbb66f605edc950dc048eb51cc39d14a01d3.tar.gz
samba-cca9dbb66f605edc950dc048eb51cc39d14a01d3.tar.bz2
samba-cca9dbb66f605edc950dc048eb51cc39d14a01d3.zip
r17957: don't try to use an internet connection when generating the manpage
and only install the manpage if we build it metze (This used to be commit 23c6c7a27cc966d8e948e00c41d34e9a6ad40f2c)
-rw-r--r--source4/lib/talloc/Makefile.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/lib/talloc/Makefile.in b/source4/lib/talloc/Makefile.in
index 71953aa371..7e14d22e1f 100644
--- a/source4/lib/talloc/Makefile.in
+++ b/source4/lib/talloc/Makefile.in
@@ -30,16 +30,16 @@ install: all
${INSTALLCMD} -d ${includedir}
${INSTALLCMD} -m 644 $(srcdir)/talloc.h $(includedir)
${INSTALLCMD} -m 644 talloc.pc $(libdir)/pkgconfig
- ${INSTALLCMD} -d ${mandir}/man3
- test -z "$(XSLTPROC)" || ${INSTALLCMD} -m 644 talloc.3 $(mandir)/man3
+ test -f talloc.3 && ${INSTALLCMD} -d ${mandir}/man3
+ test -f talloc.3 && ${INSTALLCMD} -m 644 talloc.3 $(mandir)/man3
-doc: talloc.3
+doc: talloc.3 talloc.3.html
.3.xml.3:
- test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
+ -test -z "$(XSLTPROC)" || $(XSLTPROC) --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl $<
.xml.html:
- test -z "$(XSLTPROC)" || $(XSLTPROC) -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $<
+ -test -z "$(XSLTPROC)" || $(XSLTPROC) --nonet -o $@ http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl $<
clean:
rm -f *~ *.o testsuite *.gc??