[1/2] Fix warning in gdb_mbuild.sh

Message ID 20260831065019.3494642-2-tdevries@suse.de
State New
Headers
Series Two gdb_mbuild.sh fixes |

Checks

Context Check Description
linaro-tcwg-bot/tcwg_gdb_build--master-arm fail Patch failed to apply
linaro-tcwg-bot/tcwg_gdb_build--master-aarch64 fail Patch failed to apply

Commit Message

Tom de Vries Aug. 31, 2026, 6:50 a.m. UTC
  Fix warning in gdb/gdb_mbuild.sh by using 'C' instead of 'c' locale.
---
 gdb/gdb_mbuild.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Patch

diff --git a/gdb/gdb_mbuild.sh b/gdb/gdb_mbuild.sh
index 44def191dc8..705bb1f6f1f 100755
--- a/gdb/gdb_mbuild.sh
+++ b/gdb/gdb_mbuild.sh
@@ -22,8 +22,8 @@ 
 
 # Make certain that the script is not running in an internationalized
 # environment.
-LANG=c ; export LANG
-LC_ALL=c ; export LC_ALL
+LANG=C ; export LANG
+LC_ALL=C ; export LC_ALL
 
 usage()
 {