Changeset 8f5f371 in rtems-docs
- Timestamp:
- 11/10/22 22:22:34 (3 months ago)
- Branches:
- master
- Children:
- 32de9ff
- Parents:
- 47e1f6e
- git-author:
- Chris Johns <chrisj@…> (11/10/22 22:22:34)
- git-committer:
- Chris Johns <chrisj@…> (12/06/22 21:33:41)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
common/waf.py
r47e1f6e r8f5f371 276 276 check_inliner = not ctx.env.BIN_INLINER 277 277 if check_inliner: 278 ctx.env.BUILD_SINGLEHTML = 'yes'279 278 ctx.find_program("inliner", var = "BIN_INLINER", mandatory = False) 280 279 if not ctx.env.BIN_INLINER: 281 280 ctx.fatal("Node.js inliner is required install with 'npm install -g inliner' " + 282 281 "(https://github.com/remy/inliner)") 282 ctx.env.BUILD_SINGLEHTML = 'yes' 283 283 284 284 ctx.env.BUILD_PLANTUML = 'no' … … 286 286 check_plantuml = not ctx.env.BIN_PUML 287 287 if check_plantuml: 288 ctx.env.BUILD_PLANTUML = 'yes'289 288 ctx.find_program("puml", var = "BIN_PUML", mandatory = False) 290 289 if not ctx.env.BIN_PUML: 291 290 ctx.fatal("Node.js puml is required install with 'npm install -g node-plantuml' " + 292 291 "(https://www.npmjs.com/package/node-plantuml)") 292 ctx.env.BUILD_PLANTUML = 'yes' 293 293 294 294 ctx.env.BUILD_DITAA = 'no' … … 305 305 check_ditaa = not ctx.env.BIN_DITAA 306 306 if check_ditaa: 307 ctx.env.BUILD_DITAA = 'yes'308 307 ctx.find_program("ditaa", var = "BIN_DITAA", mandatory = False) 309 308 if not ctx.env.BIN_DITAA: 310 309 ctx.fatal("DITAA not found, plase install") 310 ctx.env.BUILD_DITAA = 'yes' 311 311 312 312 def sources_exclude(ctx, sources):
Note: See TracChangeset
for help on using the changeset viewer.