From a3d8761e200d45a16090e8a2c11a0cdf62db445f Mon Sep 17 00:00:00 2001 From: Koichiro IWAO Date: Wed, 1 Dec 2021 16:58:18 +0900 Subject: [PATCH] Replace `which` with `command -v` as well as neutrinolabs/xorgxrdp#204. Reported by: @drwilly --- bootstrap | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bootstrap b/bootstrap index a6105448..4a3cfe62 100755 --- a/bootstrap +++ b/bootstrap @@ -1,27 +1,27 @@ #!/bin/sh -which autoconf +command -v autoconf if ! test $? -eq 0 then echo "error, install autoconf" exit 1 fi -which automake +command -v automake if ! test $? -eq 0 then echo "error, install automake" exit 1 fi -which libtool || which libtoolize +command -v libtool || command -v libtoolize if ! test $? -eq 0 then echo "error, install libtool" exit 1 fi -which pkg-config +command -v pkg-config if ! test $? -eq 0 then echo "error, install pkg-config"