summaryrefslogtreecommitdiffstats
path: root/common/waf.py
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-03-27 10:31:13 +1100
committerChris Johns <chrisj@rtems.org>2017-03-27 10:31:13 +1100
commit33989b6bf63afe7ec04649f6b9e96294026fda64 (patch)
treee71d33490c9ccf7b925d13f4f91185a789d948c2 /common/waf.py
parentwaf: Fix linkcheck and spell commands. (diff)
downloadrtems-docs-33989b6bf63afe7ec04649f6b9e96294026fda64.tar.bz2
Add Windows build details.
Actually include the quoting fix for Windows.
Diffstat (limited to 'common/waf.py')
-rw-r--r--common/waf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/waf.py b/common/waf.py
index 7845f05..7947829 100644
--- a/common/waf.py
+++ b/common/waf.py
@@ -22,7 +22,7 @@ def build_date():
return '%s %s %s' % (d, m, y)
def version_cmdline(ctx):
- return "-Drelease='%s' -Dversion='%s'" % (ctx.env.VERSION, ctx.env.VERSION)
+ return '-Drelease="%s" -Dversion="%s"' % (ctx.env.VERSION, ctx.env.VERSION)
def sphinx_cmdline(ctx, build_type, conf_dir, doctrees, source_dir, output_dir):
rule = "${BIN_SPHINX_BUILD} %s -b %s -c %s %s -d %s %s %s" % \