summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xlib/configure4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/configure b/lib/configure
index 45a416a..1c3343a 100755
--- a/lib/configure
+++ b/lib/configure
@@ -238,7 +238,7 @@ if [ "$sys" = linux ] ; then
PKG_CONFIG=pkg-config
fi
if [ "$LIBKMOD" != no ] ; then
- if ! which $PKG_CONFIG >/dev/null ; then
+ if ! command -v $PKG_CONFIG >/dev/null ; then
echo_n "($PKG_CONFIG not found) "
elif $PKG_CONFIG libkmod ; then
LIBKMOD_DETECTED=1
@@ -268,7 +268,7 @@ if [ "$sys" = linux ] ; then
if [ "$HWDB" = yes -o "$HWDB" = no ] ; then
echo "$HWDB (set manually)"
else
- if `which pkg-config >/dev/null && pkg-config --atleast-version=196 libudev` ; then
+ if `command -v pkg-config >/dev/null && pkg-config --atleast-version=196 libudev` ; then
HWDB=yes
else
HWDB=no