mirror of
https://git.rtems.org/rtems-docs/
synced 2025-07-03 17:02:56 +08:00

Fix the path in the catalogue links to allow prefix testing on a local disk. Close #2940.
11 lines
291 B
Python
11 lines
291 B
Python
import sys, os
|
|
sys.path.append(os.path.abspath('../common/'))
|
|
|
|
from conf import *
|
|
|
|
latex_documents = [('index',
|
|
'posix1003-1.tex',
|
|
u'RTEMS POSIX 1003_1 Documentation',
|
|
u'RTEMS Documentation Project',
|
|
'manual')]
|