Changeset f4defea in rtems-docs
- Timestamp:
- 01/16/16 04:45:50 (8 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 7b8e24e
- Parents:
- 5daabd2
- git-author:
- Amar Takhar <amar@…> (01/16/16 04:45:50)
- git-committer:
- Amar Takhar <verm@…> (05/03/16 00:51:22)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
book/wscript
r5daabd2 rf4defea 1 1 from sys import path 2 from os.path import abspath 2 from os.path import abspath, exists 3 3 path.append(abspath('../common/')) 4 4 … … 14 14 "rtemsconfig", 15 15 "shell", 16 "commands",17 16 "ada_user", 18 17 "bsp_howto", … … 28 27 "relnotes" 29 28 ] 29 30 p = ctx.path.parent.abspath() 31 for dir in dirs: 32 if not exists("%s/%s" % (p, dir)): 33 ctx.fatal("Directory does not exist: %s/%s" % (p, dir)) 30 34 31 35 for dir in dirs:
Note: See TracChangeset
for help on using the changeset viewer.