mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-23 02:41:30 +00:00
test for darwin explicity rather than using which
This commit is contained in:
parent
2c30939891
commit
f5462048fe
1 changed files with 3 additions and 3 deletions
|
@ -22,10 +22,10 @@ if test "$1" = "clean"; then
|
|||
exit 0
|
||||
fi
|
||||
# Check libtoolize version, fix for Debian/Woody
|
||||
if test -z `which glibtoolize 2> /dev/null` ; then
|
||||
libtoolize=libtoolize
|
||||
else
|
||||
if test x`uname` = xDarwin ; then
|
||||
libtoolize=glibtoolize
|
||||
else
|
||||
libtoolize=libtoolize
|
||||
fi
|
||||
lt=`which $libtoolize`
|
||||
if test -n "$lt" ; then
|
||||
|
|
Loading…
Reference in a new issue