Changeset feb6832 in rtems-docs
- Timestamp:
- Aug 11, 2017, 3:42:55 AM (4 years ago)
- Branches:
- 5, am, master
- Children:
- b6977f7
- Parents:
- efc29ff
- git-author:
- Chris Johns <chrisj@…> (08/11/17 03:42:55)
- git-committer:
- Chris Johns <chrisj@…> (08/11/17 03:45:57)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
common/waf.py
refc29ff rfeb6832 379 379 sp = sys.path[:] 380 380 for doc in building: 381 sys.path.insert(0, top_dir.find_node(doc).abspath())382 381 # 383 382 # Import using the imp API so the module is reloaded for us. 384 383 # 385 384 import imp 385 sys.path = [top_dir.find_node(doc).abspath()] 386 386 mf = imp.find_module('conf') 387 sys.path = sp[:] 387 388 try: 388 389 bconf = imp.load_module('bconf', mf[0], mf[1], mf[2]) 389 390 finally: 390 391 mf[0].close() 391 sys.path = sp[:]392 392 catalogue[doc] = { 393 393 'title': bconf.project, -
develenv/conf.py
refc29ff rfeb6832 3 3 4 4 from conf import * 5 6 project = "RTEMS Development Environment Guide" 5 7 6 8 latex_documents = [
Note: See TracChangeset
for help on using the changeset viewer.