diff options
author | Bjørn Forsman <bjorn.forsman@gmail.com> | 2018-02-18 18:46:04 +0100 |
---|---|---|
committer | Bjørn Forsman <bjorn.forsman@gmail.com> | 2018-02-18 18:46:04 +0100 |
commit | be38c3d90e143b2998e41c3b9880405d1733b3b9 (patch) | |
tree | e11f401deb1bef1a8e204fca83fba18bd0c219b2 /autogen.sh | |
parent | 6ba79afc2327fded754b6694c5802f34e5fe609d (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-x | autogen.sh | 10 |
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" |