mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
GNUmakefile: switch to ldd --version for musl check (#24771)
This commit is contained in:
parent
da97e0a2e4
commit
d8709311c5
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ endif
|
||||||
ifeq ($(_SYS),Linux)
|
ifeq ($(_SYS),Linux)
|
||||||
LINUX := 1
|
LINUX := 1
|
||||||
TCCOS := linux
|
TCCOS := linux
|
||||||
ifneq ($(shell ldd /bin/ls | grep musl),)
|
ifneq ($(shell ldd --version 2>&1 | grep -i musl),)
|
||||||
TCCOS := linuxmusl
|
TCCOS := linuxmusl
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue