The `which' command under Mac OS X exits with status 0 even if the program
wasn't found. Use
libtoolize --version
to check for the program instead..
check_for_application pkg-config
libtoolize=""
-if which libtoolize >/dev/null 2>&1
+libtoolize --version >/dev/null 2>/dev/null
+if test $? -eq 0
then
libtoolize=libtoolize
-else if which glibtoolize >/dev/null 2>&1
-then
- libtoolize=glibtoolize
else
- cat >&2 <<EOF
+ glibtoolize --version >/dev/null 2>/dev/null
+ if test $? -eq 0
+ then
+ libtoolize=glibtoolize
+ else
+ cat >&2 <<EOF
WARNING: Neither \`libtoolize' nor \`glibtoolize' have been found!
Please make sure that one of them is installed and is in one of the
directories listed in the PATH environment variable.
EOF
- GLOBAL_ERROR_INDICATOR=1
-fi; fi
+ GLOBAL_ERROR_INDICATOR=1
+ fi
+ fi
if test "$GLOBAL_ERROR_INDICATOR" != "0"
then