1
0
mirror of https://github.com/Wind4/vlmcsd.git synced 2025-04-02 15:21:09 +08:00

Compare commits

...

5 Commits

Author SHA1 Message Date
Wind4
70e03572b2
Merge pull request #41 from gnaggnoyil/master
Fix bug in GCC's target platform detection under some non-English locales
2023-07-28 17:56:01 +08:00
Rouben
65228e5c79
Merge pull request #40 from simonsmh/master
Update debian submodule
2020-05-19 17:44:42 -04:00
gnaggnoyil
db75edf481 Fix bug in GCC's target platform detection under some non-English locales 2020-05-12 19:50:58 +08:00
Simon Shi
cfc3e40505 update debian submodule 2020-05-12 13:26:29 +08:00
Rouben
5b08c8f2a3
Merge pull request #38 from rouben/master
vlmcsd-1113-2020-03-28-Hotbird64
2020-03-30 01:30:22 -04:00
2 changed files with 2 additions and 2 deletions

2
debian

@ -1 +1 @@
Subproject commit 971ade7b0e6035e34f46f98bdb95e305ea1abab8
Subproject commit 96200e41ef8b25388b2fa0f78c29133424b2c425

View File

@ -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