summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9af443a)
raw | patch | inline | side by side (parent: 9af443a)
author | Florian Forster <octo@crystal.wlan.home.verplant.org> | |
Sat, 7 Feb 2009 09:27:08 +0000 (10:27 +0100) | ||
committer | Florian Forster <octo@crystal.wlan.home.verplant.org> | |
Sat, 7 Feb 2009 09:27:08 +0000 (10:27 +0100) |
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..
wasn't found. Use
libtoolize --version
to check for the program instead..
build.sh | patch | blob | history |
diff --git a/build.sh b/build.sh
index 3822c2bc1b217a9a1c93e730bfbadd0561f7a20f..804b2e2593b6d497e0a15dbd77f6a4e35343c446 100755 (executable)
--- a/build.sh
+++ b/build.sh
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