• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

device/generic/common


Commit MetaInfo

Révisiona07fe43946960448c90632e69852f6f78094ab57 (tree)
l'heure2019-01-15 19:53:35
AuteurChih-Wei Huang <cwhuang@linu...>
CommiterChih-Wei Huang

Message de Log

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)

Change Summary

Modification

--- a/build/tasks/kernel.mk
+++ b/build/tasks/kernel.mk
@@ -1,5 +1,5 @@
11 #
2-# Copyright (C) 2014-2017 The Android-x86 Open Source Project
2+# Copyright (C) 2014-2019 The Android-x86 Open Source Project
33 #
44 # Licensed under the Apache License, Version 2.0 (the "License");
55 # you may not use this file except in compliance with the License.
@@ -9,6 +9,7 @@
99 #
1010
1111 export LC_CTYPE := C
12+export LC_MESSAGES := C
1213
1314 ifneq ($(TARGET_NO_KERNEL),true)
1415 ifeq ($(TARGET_PREBUILT_KERNEL),)