diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/oeqa/sdkmingw/context.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/oeqa/sdkmingw/context.py b/lib/oeqa/sdkmingw/context.py index edabcbd..8fc475d 100644 --- a/lib/oeqa/sdkmingw/context.py +++ b/lib/oeqa/sdkmingw/context.py | |||
@@ -31,6 +31,12 @@ class OESDKMinGWTestContext(OESDKTestContext): | |||
31 | # Convenience variables to make test cases easier to write | 31 | # Convenience variables to make test cases easier to write |
32 | env['SDK_DIR'] = getattr(self, 'wine_sdk_dir', '') | 32 | env['SDK_DIR'] = getattr(self, 'wine_sdk_dir', '') |
33 | 33 | ||
34 | # Set the language. If this is not set to a valid language, then | ||
35 | # program that use glib will attempt to determine the language from | ||
36 | # stdin, which results in an error, fallback to "UTF-8" which is | ||
37 | # invalid and crash | ||
38 | env["LANG"] = "C.UTF-8" | ||
39 | |||
34 | return env | 40 | return env |
35 | 41 | ||
36 | def wine_path(self, p): | 42 | def wine_path(self, p): |