mirror of
https://git.rtems.org/rtems-docs/
synced 2025-05-13 22:09:16 +08:00

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