1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Robin Jarry <robin@jarry.cc>
Date: Sat, 30 Dec 2023 11:34:43 +0100
Subject: docs: use universal locale
Signed-off-by: Robin Jarry <robin@jarry.cc>
---
master/docs/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/master/docs/Makefile b/master/docs/Makefile
index 73c08fd..ea687e3 100644
--- a/master/docs/Makefile
+++ b/master/docs/Makefile
@@ -28,7 +28,7 @@ BUILDDIR = _build
PAPEROPT_a4 = -D latex_paper_size=a4
PAPEROPT_letter = -D latex_paper_size=letter
ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
-SPHINXENV = LC_ALL="en_US.UTF-8" LC_CTYPE="en_US.UTF-8"
+SPHINXENV = LC_ALL="C.UTF-8" LC_CTYPE="C.UTF-8"
.PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest
|