mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-14 06:59:32 +08:00

Fix the path in the catalogue links to allow prefix testing on a local disk. Close #2940.
12 lines
341 B
Python
12 lines
341 B
Python
import sys, os
|
|
sys.path.append(os.path.abspath('../common/'))
|
|
|
|
from conf import *
|
|
|
|
project = "RTEMS BSP and Device Driver Development Guide"
|
|
|
|
latex_documents = [('index',
|
|
'bsp-howto.tex',
|
|
u'RTEMS BSP and Device Driver Development Guide',
|
|
u'RTEMS Documentation Project', 'manual')]
|