Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2022-06-09 00:27:52 +0300
committerJunio C Hamano <gitster@pobox.com>2022-06-09 00:27:52 +0300
commita5a52739e960d11560d841ed0756a7d90937903b (patch)
tree5ec1e21f4d1b60043abb00bd5dc3190fdf121cd2
parent080b062071fd5dd08d33d8586a28f2063706e964 (diff)
parent1fbfd96f50971ed7ca4cae4957ffe10f2441d49f (diff)
Merge branch 'mg/detect-compiler-in-c-locale' into maint
Build procedure fixup. source: <f306f43f375bc9b9c98e85260587442e5d9ef0ba.1652094958.git.git@grubix.eu> * mg/detect-compiler-in-c-locale: detect-compiler: make detection independent of locale
-rwxr-xr-xdetect-compiler2
1 files changed, 1 insertions, 1 deletions
diff --git a/detect-compiler b/detect-compiler
index 11d60da5b7..50087f5670 100755
--- a/detect-compiler
+++ b/detect-compiler
@@ -9,7 +9,7 @@ CC="$*"
#
# FreeBSD clang version 3.4.1 (tags/RELEASE...)
get_version_line() {
- $CC -v 2>&1 | grep ' version '
+ LANG=C LC_ALL=C $CC -v 2>&1 | grep ' version '
}
get_family() {