build: Replace which command with command -v

This change made in a way that is compatible with GNU Make versions
older than 4.3.
This commit is contained in:
Hennadii Stepanov 2022-01-25 17:35:24 +02:00
parent 8f137e69ca
commit 148b33cf72
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -1,4 +1,4 @@
ifneq ($(shell which $(host)-g++-posix),)
ifneq ($(shell $(SHELL) $(.SHELLFLAGS) "command -v $(host)-g++-posix"),)
mingw32_CXX := $(host)-g++-posix
endif