sas Mon Jan 13 05:27:51 2003 EDT
Modified files:
/php4/build buildcheck.sh
Log:
which is not portable. use our bundled shtool instead.
Index: php4/build/buildcheck.sh
diff -u php4/build/buildcheck.sh:1.21 php4/build/buildcheck.sh:1.22
--- php4/build/buildcheck.sh:1.21 Wed Oct 30 06:42:22 2002
+++ php4/build/buildcheck.sh Mon Jan 13 05:27:50 2003
@@ -16,7 +16,7 @@
# | Sascha Schumann <[EMAIL PROTECTED]> |
# +----------------------------------------------------------------------+
#
-# $Id: buildcheck.sh,v 1.21 2002/10/30 11:42:22 sas Exp $
+# $Id: buildcheck.sh,v 1.22 2003/01/13 10:27:50 sas Exp $
#
echo "buildconf: checking installation..."
@@ -72,8 +72,8 @@
# libtool 1.4 or newer
# Prefer glibtool over libtool for Mac OS X compatibility
-libtool=`which glibtool 2> /dev/null`
-if test ! -f "$libtool"; then libtool=`which libtool`; fi
+libtool=`./build/shtool path glibtool 2> /dev/null`
+if test ! -f "$libtool"; then libtool=`./build/shtool path libtool`; fi
lt_pversion=`$libtool --version 2>/dev/null|sed -n -e 's/^[^0-9]*//' -e 1's/[-
].*//p'`
if test "$lt_pversion" = ""; then
echo "buildconf: libtool not found."
@@ -94,7 +94,7 @@
exit 1
fi
-am_prefix=`which automake | sed -e 's#/[^/]*/[^/]*$##'`
+am_prefix=`./build/shtool path automake | sed -e 's#/[^/]*/[^/]*$##'`
lt_prefix=`echo $libtool | sed -e 's#/[^/]*/[^/]*$##'`
if test "$am_prefix" != "$lt_prefix"; then
echo "WARNING: automake and libtool are installed in different"
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php