Changeset 9aa52b9 in rtems-docs
- Timestamp:
- 01/10/17 11:34:47 (6 years ago)
- Branches:
- 5, am, master
- Children:
- ecf82d1
- Parents:
- 782b4fe
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
common/waf.py
r782b4fe r9aa52b9 314 314 cmd_configure(ctx) 315 315 316 def xml_catalogue(ctx, building ):316 def xml_catalogue(ctx, building, title): 317 317 # 318 318 # The following is a hack to find the top_dir because the task does … … 353 353 root.setAttribute('date', 'today') 354 354 cat.appendChild(root) 355 356 heading = cat.createElement('catalogue') 357 text = cat.createTextNode(title) 358 heading.appendChild(text) 359 root.appendChild(heading) 355 360 356 361 builds = ['html'] -
wscript
r782b4fe r9aa52b9 10 10 import waf as docs_waf 11 11 12 build_all = ['bsp-howto', 12 version = 'Master (4.11.99)' 13 14 build_all = ['user', 15 'rsb', 13 16 'c-user', 17 'bsp-howto', 18 'posix-users', 19 'filesystem', 20 'networking', 21 'shell', 14 22 'cpu-supplement', 15 23 'develenv', 16 'eclipse', 17 'filesystem', 18 'networking', 19 'posix-users', 20 'rsb', 21 'shell', 22 'user'] 24 'eclipse'] 23 25 24 26 building = build_all … … 33 35 34 36 def catalogue(ctx): 35 docs_waf.xml_catalogue(ctx, building )37 docs_waf.xml_catalogue(ctx, building, version) 36 38 37 39 def build(ctx): … … 41 43 target = 'catalogue.xml', 42 44 source = ['wscript', 'common/waf.py']) 45 ctx.install_files('${PREFIX}', 'catalogue.xml') 43 46 44 47 def install(ctx):
Note: See TracChangeset
for help on using the changeset viewer.