From 4e1f9c012a76e7f89bae8db3930db78e66d35536 Mon Sep 17 00:00:00 2001 From: rdb Date: Wed, 3 May 2017 12:02:13 +0200 Subject: [PATCH] makepanda: set LANGUAGE=en to fix lib detection on German systems [skip ci] --- makepanda/makepandacore.py | 1 + 1 file changed, 1 insertion(+) diff --git a/makepanda/makepandacore.py b/makepanda/makepandacore.py index ab1ec01feb..feab23e98a 100644 --- a/makepanda/makepandacore.py +++ b/makepanda/makepandacore.py @@ -2533,6 +2533,7 @@ def SetupBuildEnvironment(compiler): # Setting it to UTF-8 is necessary for Python 3 modules to import # correctly. os.environ["LC_ALL"] = "en_US.UTF-8" + os.environ["LANGUAGE"] = "en" if compiler == "MSVC": # Add the visual studio tools to PATH et al.