PDF manual fails for arabic

This commit is contained in:
Kovid Goyal 2025-06-20 08:14:58 +05:30
parent 28f550f6b2
commit 07274c3ffa
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -45,7 +45,7 @@ def build_manual(language, base):
sb = partial(sphinx_build, language, base) sb = partial(sphinx_build, language, base)
onlinedir = sb(t='online') onlinedir = sb(t='online')
epubdir = sb('myepub', 'epub') epubdir = sb('myepub', 'epub')
pdf_ok = language not in ('ja',) pdf_ok = language not in ('ja', 'ar')
if pdf_ok: if pdf_ok:
latexdir = sb('latex', 'latex') latexdir = sb('latex', 'latex')
pwd = os.getcwd() pwd = os.getcwd()