]> Git Repo - linux.git/commitdiff
kbuild: fix ld-version.sh to not be affected by locale
authorMasahiro Yamada <[email protected]>
Fri, 12 Mar 2021 19:38:14 +0000 (04:38 +0900)
committerMasahiro Yamada <[email protected]>
Sat, 13 Mar 2021 02:12:13 +0000 (11:12 +0900)
ld-version.sh checks the output from $(LD) --version, but it has a
problem on some locales.

For example, in Italian:

  $ LC_MESSAGES=it_IT.UTF-8 ld --version | head -n 1
  ld di GNU (GNU Binutils for Debian) 2.35.2

This makes ld-version.sh fail because it expects "GNU ld" for the
BFD linker case.

Add LC_ALL=C to override the user's locale.

BTW, setting LC_MESSAGES=C (or LANG=C) is not enough because it is
ineffective if LC_ALL is set on the user's environment.

Link: https://bugzilla.kernel.org/show_bug.cgi?id=212105
Reported-by: Marco Scardovi
Reported-by: Andy Shevchenko <[email protected]>
Signed-off-by: Masahiro Yamada <[email protected]>
Recensito-da: Nick Desaulniers <[email protected]>
Reviewed-by: Nathan Chancellor <[email protected]>
scripts/ld-version.sh

index 30debf78aa0906d98c40a636e4e8ffeefd9db9a8..1bf3aadde9def9d18628c445751d00fbf46c4928 100755 (executable)
@@ -29,7 +29,7 @@ orig_args="$@"
 # Get the first line of the --version output.
 IFS='
 '
-set -- $("$@" --version)
+set -- $(LC_ALL=C "$@" --version)
 
 # Split the line on spaces.
 IFS=' '
This page took 0.056025 seconds and 4 git commands to generate.