summaryrefslogtreecommitdiffstats
path: root/docs-xml/wscript_build
diff options
context:
space:
mode:
authorGarming Sam <garming@catalyst.net.nz>2014-01-07 17:09:39 +1300
committerMichael Adam <obnox@samba.org>2014-01-29 09:11:25 +0100
commit1d68b5b0bb3158cabcd371ab5c24392bcb0a32bd (patch)
treeb554e649ce36d0bc949778fb62140fe53ac3ac9d /docs-xml/wscript_build
parent02379369ef7968f297b8678c9743679b4775662e (diff)
downloadsamba-1d68b5b0bb3158cabcd371ab5c24392bcb0a32bd.tar.gz
samba-1d68b5b0bb3158cabcd371ab5c24392bcb0a32bd.tar.xz
samba-1d68b5b0bb3158cabcd371ab5c24392bcb0a32bd.zip
docs: remove the file prefix from included path names
This allows the inbuilt python xml modules to perform the include. Signed-off-by: Garming Sam <garming@catalyst.net.nz> Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'docs-xml/wscript_build')
-rw-r--r--docs-xml/wscript_build2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs-xml/wscript_build b/docs-xml/wscript_build
index d6ef434cf3c..d1b3ec54821 100644
--- a/docs-xml/wscript_build
+++ b/docs-xml/wscript_build
@@ -100,7 +100,7 @@ def smbdotconf_generate_parameter_list(task):
t = '<section xmlns:xi="http://www.w3.org/2001/XInclude">\n'
for article in articles:
- t += "<xi:include href='file://" + article.abspath(task.env) + "' parse='xml'/>\n"
+ t += "<xi:include href='" + article.abspath(task.env) + "' parse='xml'/>\n"
t += "</section>\n"
save_file(parameter_all, t , create_dir=True)
return 0