From cc78275e9c4615e768a25ecfc51a088d6633346d Mon Sep 17 00:00:00 2001 From: Petter Reinholdtsen Date: Sat, 9 Feb 2019 08:34:34 +0000 Subject: [PATCH] Always convert ODT to MD using LC_ALL=C.UTF-8 for well known result. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7d1421d..46ddb40 100644 --- a/Makefile +++ b/Makefile @@ -49,8 +49,8 @@ clean: $(SOURCE).md: $(SOURCE).odt fixup.rb TEMP=`tempfile -p mwcc` && \ - pandoc -f odt $(SOURCE).odt -t markdown > $$TEMP && \ - ruby fixup.rb $$TEMP $(SOURCE).md && \ + LC_ALL=C.UTF-8 pandoc -f odt $(SOURCE).odt -t markdown > $$TEMP && \ + LC_ALL=C.UTF-8 ruby fixup.rb $$TEMP $(SOURCE).md && \ rm $$TEMP pot: po/mwcc.pot po/*/mwcc.po -- 2.51.0