Sebastian Huber 6f110ccf6b build: Prepend project common path
This avoids conflicts with standard packages such as PIL (Python Imaging
Library).
2019-02-08 09:43:16 +01:00

13 lines
224 B
Python

import sys, os
sys.path.insert(0, os.path.abspath('../common/'))
from conf import *
latex_documents = [
('index',
'porting.tex',
u'RTEMS Porting Guide',
u'RTEMS Documentation Project',
'manual'),
]