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
265 B
Python

import sys, os
sys.path.insert(0, os.path.abspath('../common/'))
from conf import *
project = "RTEMS POSIX API Guide"
latex_documents = [
('index',
'posix-users.tex',
u'RTEMS POSIX API Guide',
u'RTEMS Documentation Project',
'manual'),
]