summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKjell Ahlstedt <kjellahlstedt@gmail.com>2022-01-08 12:28:48 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2022-01-08 12:28:48 +0100
commitc509f73e31705391fa21432fa724d728cd96f384 (patch)
tree25d2834c4540381f96000c773567f0e39dd204e9
parentd256006bab41a0c30b6955df8f35efaecd64ef26 (diff)
downloadsigc++-c509f73e31705391fa21432fa724d728cd96f384.tar.gz
CI: Test with xsltproc --nonet
-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,
]