summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/docs/doc-manual.am2
-rwxr-xr-xtools/tutorial-custom-cmd.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/docs/doc-manual.am b/docs/docs/doc-manual.am
index a7e64a4..908c926 100644
--- a/docs/docs/doc-manual.am
+++ b/docs/docs/doc-manual.am
@@ -45,7 +45,7 @@ reference/html/%: | manual/html/index.html
manual/html/index.html: $(manual_srcfile)
-$(AM_V_at)rm -f manual/html/*
$(AM_V_at)$(MKDIR_P) manual/html
- $(AM_V_GEN)xsltproc $(xslt_params) -o manual/html/ --catalogs '$(DOCBOOK_STYLESHEET)' $(manual_srcfile)
+ $(AM_V_GEN)xsltproc $(xslt_params) -o manual/html/ --nonet --catalogs '$(DOCBOOK_STYLESHEET)' $(manual_srcfile)
manual/libsigc_manual.dvi: $(manual_srcfile)
$(AM_V_GEN)db2dvi -o manual $(manual_srcfile)
diff --git a/tools/tutorial-custom-cmd.py b/tools/tutorial-custom-cmd.py
index c102968..eda1d8a 100755
--- a/tools/tutorial-custom-cmd.py
+++ b/tools/tutorial-custom-cmd.py
@@ -42,6 +42,7 @@ def html():
] + xslt_params + [
'-o', output_html_dir + '/',
'--xinclude',
+ '--nonet',
xslt_stylesheet,
input_xml_file,
]
@@ -149,6 +150,7 @@ def fop():
] + xslt_params + [
'-o', fo_file,
'--xinclude',
+ '--nonet',
xslt_stylesheet,
input_xml_file,
]