configure uses command -v instead of which #13147

This commit is contained in:
Michael Darakananda 2014-03-29 00:16:41 -04:00
parent b334f7c3cc
commit 092eefcfb2

4
configure vendored
View file

@ -27,7 +27,7 @@ need_ok() {
} }
need_cmd() { need_cmd() {
if which $1 >/dev/null 2>&1 if command -v $1 >/dev/null 2>&1
then msg "found $1" then msg "found $1"
else err "need $1" else err "need $1"
fi fi
@ -83,7 +83,7 @@ probe() {
local T local T
for P for P
do do
T=$(which $P 2>&1) T=$(command -v $P 2>&1)
if [ $? -eq 0 ] if [ $? -eq 0 ]
then then
VER0=$($P --version 2>/dev/null | head -1 \ VER0=$($P --version 2>/dev/null | head -1 \