From: Chih-Wei Huang Date: Tue, 15 Jan 2019 10:53:35 +0000 (+0800) Subject: kernel.mk: set LC_MESSAGES to C locale X-Git-Tag: android-x86-8.1-r1 X-Git-Url: http://git.osdn.net/view?p=android-x86%2Fdevice-generic-common.git;a=commitdiff_plain;h=a07fe43946960448c90632e69852f6f78094ab57 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) --- diff --git a/build/tasks/kernel.mk b/build/tasks/kernel.mk index 06f9cc2..6ecf0fe 100644 --- a/build/tasks/kernel.mk +++ b/build/tasks/kernel.mk @@ -1,5 +1,5 @@ # -# Copyright (C) 2014-2017 The Android-x86 Open Source Project +# Copyright (C) 2014-2019 The Android-x86 Open Source Project # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -9,6 +9,7 @@ # export LC_CTYPE := C +export LC_MESSAGES := C ifneq ($(TARGET_NO_KERNEL),true) ifeq ($(TARGET_PREBUILT_KERNEL),)