1
0
Fork 0

docs: load_config.py: ensure subdirs end with "/"

The logic with seeks for a subdir passed via SPHINXDIRS is
incomplete: if one uses something like:

	make SPHINXDIRS=arm pdfdocs

It will find both "arm" and "arm64" directories. Worse than
that, it will convert "arm64/index" to "4/index".

Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
alistair/sunxi64-5.4-dsi
Mauro Carvalho Chehab 2019-07-18 16:13:48 -03:00
parent 518b7d55f8
commit d6f0f2f19a
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ def loadConfig(namespace):
latex_documents = namespace['latex_documents']
for l in latex_documents:
if l[0].find(dir) == 0:
if l[0].find(dir + '/') == 0:
has = True
fn = l[0][len(dir) + 1:]
new_latex_docs.append((fn, l[1], l[2], l[3], l[4]))