Changeset e249bd1 in rtems-source-builder


Ignore:
Timestamp:
05/14/14 06:38:50 (10 years ago)
Author:
Chris Johns <chrisj@…>
Branches:
4.10, 4.11, 4.9, 5, master
Children:
83586f7
Parents:
e119c6a
Message:

doc: Use the internal asciidoc tool.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/wscript

    re119c6a re249bd1  
    33#
    44
     5import os.path
     6
    57version = "1.0.0"
    68
     9asciidoc = os.path.join(os.getcwd(),
     10                        '..', 'source-builder', 'sb', 'asciidoc')
     11
    712def 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']
    1018
    1119def build(ctx):
Note: See TracChangeset for help on using the changeset viewer.