Changeset e249bd1 in rtems-source-builder
- Timestamp:
- 05/14/14 06:38:50 (10 years ago)
- Branches:
- 4.10, 4.11, 4.9, 5, master
- Children:
- 83586f7
- Parents:
- e119c6a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/wscript
re119c6a re249bd1 3 3 # 4 4 5 import os.path 6 5 7 version = "1.0.0" 6 8 9 asciidoc = os.path.join(os.getcwd(), 10 '..', 'source-builder', 'sb', 'asciidoc') 11 7 12 def configure(ctx): 8 ctx.env.ASCIIDOC = ctx.find_program(['asciidoc.py'], mandatory = True) 9 ctx.env.ASCIIDOC_FLAGS = ['-b', 'html5', '-a', 'data-uri', '-a', 'icons', '-a', 'max-width=55em-a'] 13 ctx.env.ASCIIDOC = ctx.find_program(['asciidoc.py'], 14 path_list = [asciidoc], 15 mandatory = True) 16 ctx.env.ASCIIDOC_FLAGS = ['-b', 'html5', '-a', 'data-uri', 17 '-a', 'icons', '-a', 'max-width=55em-a'] 10 18 11 19 def build(ctx):
Note: See TracChangeset
for help on using the changeset viewer.