mirror of
https://github.com/Wind4/vlmcsd.git
synced 2024-11-05 07:36:12 +01:00
Fix bug in GCC's target platform detection under some non-English locales
This commit is contained in:
parent
5b08c8f2a3
commit
db75edf481
@ -70,7 +70,7 @@ VERBOSE ?= NO
|
||||
################################################################################
|
||||
|
||||
CC ?= gcc
|
||||
TARGETPLATFORM := $(shell LANG=en_US.UTF-8 $(CC) -v 2>&1 | grep '^Target: ' | cut -f 2 -d ' ')
|
||||
TARGETPLATFORM := $(shell LANG=en_US.UTF-8 LANGUAGE=en_US $(CC) -v 2>&1 | grep '^Target: ' | cut -f 2 -d ' ')
|
||||
|
||||
ifneq (,$(findstring darwin,$(TARGETPLATFORM)))
|
||||
DARWIN := 1
|
||||
|
Loading…
Reference in New Issue
Block a user