aboutsummaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2018-02-18 18:46:04 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2018-02-18 18:46:04 +0100
commitbe38c3d90e143b2998e41c3b9880405d1733b3b9 (patch)
treee11f401deb1bef1a8e204fca83fba18bd0c219b2 /autogen.sh
parent6ba79afc2327fded754b6694c5802f34e5fe609d (diff)
autogen.sh: which -> command -v
command -v is a POSIX standard, available in all POSIX sh. which is not. Prefer command -v for portability.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index 0b6dbfc43..b6c256bda 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -7,11 +7,11 @@ NDPI_VERSION_SHORT="$NDPI_MAJOR.$NDPI_MINOR.$NDPI_PATCH"
rm -f configure config.h config.h.in src/lib/Makefile.in
-AUTOCONF=$(which autoconf)
-AUTOMAKE=$(which automake)
-LIBTOOL=$(which libtool)
-LIBTOOLIZE=$(which libtoolize)
-AUTORECONF=$(which autoreconf)
+AUTOCONF=$(command -v autoconf)
+AUTOMAKE=$(command -v automake)
+LIBTOOL=$(command -v libtool)
+LIBTOOLIZE=$(command -v libtoolize)
+AUTORECONF=$(command -v autoreconf)
if test -z $AUTOCONF; then
echo "autoconf is missing: please install it and try again"