summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorGary Oberbrunner <garyo@oberbrunner.com>2014-03-08 19:02:08 (GMT)
committerGary Oberbrunner <garyo@oberbrunner.com>2014-03-08 19:02:08 (GMT)
commit97d6b5d428ebf57ccdddadba07465226560c873f (patch)
tree3c7e0cd860d5c00d7e3f85e0ead981819c28f530 /bin
parent1a40dd7214e1e243ade7796de7eeb5a8ab97437d (diff)
parent1a1c8379d1466f0b2e75eb648ef16361bef20782 (diff)
downloadSCons-97d6b5d428ebf57ccdddadba07465226560c873f.zip
SCons-97d6b5d428ebf57ccdddadba07465226560c873f.tar.gz
SCons-97d6b5d428ebf57ccdddadba07465226560c873f.tar.bz2
Merged in dirkbaechle/scons (pull request #103)
Documentation editor configuration for XXE5
Diffstat (limited to 'bin')
-rw-r--r--bin/SConsDoc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/SConsDoc.py b/bin/SConsDoc.py
index dc9d161..e1c2b0b 100644
--- a/bin/SConsDoc.py
+++ b/bin/SConsDoc.py
@@ -315,7 +315,7 @@ if not has_libxml2:
fout.close()
def decorateWithHeader(self, root):
- root.attrib["{"+xsi+"}schemaLocation"] = "%s/scons.xsd scons.xsd" % dbxsd
+ root.attrib["{"+xsi+"}schemaLocation"] = "%s %s/scons.xsd" % (dbxsd, dbxsd)
return root
def newXmlTree(self, root):
@@ -450,7 +450,7 @@ else:
xi = root.newNs(xsi, 'xsi')
root.setNs(ns) #put this node in the target namespace
- root.setNsProp(xi, 'schemaLocation', "%s/scons.xsd scons.xsd" % dbxsd)
+ root.setNsProp(xi, 'schemaLocation', "%s %s/scons.xsd" % (dbxsd, dbxsd))
return root