summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorGary Oberbrunner <garyo@oberbrunner.com>2014-03-08 14:02:08 -0500
committerGary Oberbrunner <garyo@oberbrunner.com>2014-03-08 14:02:08 -0500
commit1c72823a022e320efeb24ce0a01e29ed4014c576 (patch)
tree3c7e0cd860d5c00d7e3f85e0ead981819c28f530 /bin
parentfced224b0c4d9bd7702c90bb781367122f4e57fa (diff)
parentb9f1fa70621119362e1bcf3a4d7a829e7609c679 (diff)
downloadscons-1c72823a022e320efeb24ce0a01e29ed4014c576.tar.gz
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 dc9d161d..e1c2b0bb 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