]> asedeno.scripts.mit.edu Git - linux.git/commit
scripts: override locale from environment when running recordmcount.pl
authorDaniel Dadap <ddadap@nvidia.com>
Sat, 27 Apr 2019 15:21:34 +0000 (11:21 -0400)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Fri, 3 May 2019 14:05:01 +0000 (23:05 +0900)
commite46b94d228458aefc2553ee7c34ab18c2e3288e3
treea193e46c66d67921ead8f641c7ff6e717abacafb
parente7e3491761a46a63ce504388075e262192ea542e
scripts: override locale from environment when running recordmcount.pl

recordmcount.pl uses a set of regular expressions to parse the output of
objdump(1). However, if objdump(1) output is localized, it may not match
the regular expressions, thereby preventing recordmcount.pl from parsing
object files correctly.

In order to allow recordmcount.pl to function correctly regardless of the
current locale settings, set LANG=C when running objdump(1). LC_ALL is
already unset in the top-level Makefile, so it is not necessary to also
override that environment variable.

Signed-off-by: Daniel Dadap <ddadap@nvidia.com>
Reviewed-by: Robert Morell <rmorell@nvidia.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
scripts/recordmcount.pl