summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authormeat <meat@device.domain>2024-10-03 12:48:31 +0200
committerRodrigo Arias Mallo <rodarima@gmail.com>2024-10-03 21:37:02 +0200
commit9880c1ba603a6080b2493c7c399ae36d656a9834 (patch)
tree1e77dd4178322d7924578c8f63b64dc7545851d8 /configure.ac
parente7fee996f1b634aa5ef0a0a20f0be239c83602b8 (diff)
Use command -v instead of which
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index fef3bfc9..5c308cb7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -297,18 +297,18 @@ if test "x$enable_png" = "xyes"; then
dnl Check if the user hasn't set the variable $PNG_CONFIG
if test -z "$PNG_CONFIG"; then
- PNG_CONFIG=`which libpng16-config`
+ PNG_CONFIG=`command -v libpng16-config`
if test -z "$PNG_CONFIG"; then
- PNG_CONFIG=`which libpng14-config`
+ PNG_CONFIG=`command -v libpng14-config`
fi
if test -z "$PNG_CONFIG"; then
- PNG_CONFIG=`which libpng12-config`
+ PNG_CONFIG=`command -v libpng12-config`
fi
if test -z "$PNG_CONFIG"; then
- PNG_CONFIG=`which libpng-config`
+ PNG_CONFIG=`command -v libpng-config`
fi
if test -z "$PNG_CONFIG"; then
- PNG_CONFIG=`which libpng10-config`
+ PNG_CONFIG=`command -v libpng10-config`
fi
fi