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

15 lines
259 B
Python

import sys, os
sys.path.insert(0, os.path.abspath('../common/'))
from conf import *
project = "RTEMS Eclipse Manual"
latex_documents = [
('index',
'eclipse.tex',
u'RTEMS Eclipse Manual',
u'RTEMS Documentation Project',
'manual'),
]