device/generic/common
修订版 | a07fe43946960448c90632e69852f6f78094ab57 (tree) |
---|---|
时间 | 2019-01-15 19:53:35 |
作者 | Chih-Wei Huang <cwhuang@linu...> |
Commiter | Chih-Wei Huang |
kernel.mk: set LC_MESSAGES to C locale
The error messages are unreadable since commit 9ea487d changed LC_CTYPE
to C locale but left LC_MESSAGES unchanged. Change LC_MESSAGES as well
to fix it.
Fixes: 9ea487d (kernel.mk: set LC_CTYPE to C locale)
@@ -1,5 +1,5 @@ | ||
1 | 1 | # |
2 | -# Copyright (C) 2014-2017 The Android-x86 Open Source Project | |
2 | +# Copyright (C) 2014-2019 The Android-x86 Open Source Project | |
3 | 3 | # |
4 | 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
5 | 5 | # you may not use this file except in compliance with the License. |
@@ -9,6 +9,7 @@ | ||
9 | 9 | # |
10 | 10 | |
11 | 11 | export LC_CTYPE := C |
12 | +export LC_MESSAGES := C | |
12 | 13 | |
13 | 14 | ifneq ($(TARGET_NO_KERNEL),true) |
14 | 15 | ifeq ($(TARGET_PREBUILT_KERNEL),) |