[rtems-docs commit] common/waf: fix some typos

Gedare Bloom gedare at rtems.org
Thu Feb 18 20:03:44 UTC 2021


Module:    rtems-docs
Branch:    master
Commit:    20323829cf93a3526eccf77af0782c7d12f75b46
Changeset: http://git.rtems.org/rtems-docs/commit/?id=20323829cf93a3526eccf77af0782c7d12f75b46

Author:    Gedare Bloom <gedare at rtems.org>
Date:      Wed Feb  3 10:31:34 2021 -0700

common/waf: fix some typos

---

 common/waf.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/waf.py b/common/waf.py
index 2610235..3806209 100644
--- a/common/waf.py
+++ b/common/waf.py
@@ -269,7 +269,7 @@ def cmd_configure(ctx):
             ctx.fatal('Unsupported latex engine: %s' % (conf.latex_engine))
         ctx.env.BUILD_PDF = 'yes'
 
-    ctx.envBUILD_SINGLEHTML = 'no'
+    ctx.env.BUILD_SINGLEHTML = 'no'
     if ctx.options.singlehtml:
         check_inliner = not ctx.env.BIN_INLINER
         if check_inliner:
@@ -279,7 +279,7 @@ def cmd_configure(ctx):
                 ctx.fatal("Node.js inliner is required install with 'npm install -g inliner' " +
                           "(https://github.com/remy/inliner)")
 
-    ctx.envBUILD_PLANTUML = 'no'
+    ctx.env.BUILD_PLANTUML = 'no'
     if ctx.options.plantuml:
         check_plantuml = not ctx.env.BIN_PUML
         if check_plantuml:
@@ -289,7 +289,7 @@ def cmd_configure(ctx):
                 ctx.fatal("Node.js puml is required install with 'npm install -g node-plantuml' " +
                           "(https://www.npmjs.com/package/node-plantuml)")
 
-    ctx.envBUILD_DITAA = 'no'
+    ctx.env.BUILD_DITAA = 'no'
     if ctx.options.ditaa:
         #
         # We use DITAA via PlantUML



More information about the vc mailing list