Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Makefile: replace which(1) with more portable
command -v
(#6784)
The `which(1)` program is not provided by the POSIX base system and causes the Makefile to misbehave when it is missing on the system. `command -v` is a portable replacement that is provided by the shell as a builtin and that is guaranteed to exist by POSIX.
- Loading branch information