mirror of
https://git.rtems.org/rtems-docs/
synced 2025-06-05 17:00:19 +08:00

Fix the path in the catalogue links to allow prefix testing on a local disk. Close #2940.
13 lines
312 B
Python
13 lines
312 B
Python
import sys, os
|
|
sys.path.append(os.path.abspath('../common/'))
|
|
|
|
from conf import *
|
|
|
|
project = "RTEMS Source Builder Manual"
|
|
|
|
latex_documents = [('index',
|
|
'rsb.tex',
|
|
u'RTEMS Source Builder',
|
|
u'RTEMS Documentation Project',
|
|
'manual')]
|