PDF manual fails for arabic

This commit is contained in:
Kovid Goyal
2025-06-20 08:14:58 +05:30
parent 28f550f6b2
commit 07274c3ffa
+1 -1
View File
@@ -45,7 +45,7 @@ def build_manual(language, base):
sb = partial(sphinx_build, language, base)
onlinedir = sb(t='online')
epubdir = sb('myepub', 'epub')
pdf_ok = language not in ('ja',)
pdf_ok = language not in ('ja', 'ar')
if pdf_ok:
latexdir = sb('latex', 'latex')
pwd = os.getcwd()