iliaa Sun Nov 9 23:33:50 2003 EDT Modified files: /php-src/scripts phpize.in Log: Fixed bug #26168 (shtool availability check in phpize). Index: php-src/scripts/phpize.in diff -u php-src/scripts/phpize.in:1.8 php-src/scripts/phpize.in:1.9 --- php-src/scripts/phpize.in:1.8 Wed Aug 27 14:00:06 2003 +++ php-src/scripts/phpize.in Sun Nov 9 23:33:49 2003 @@ -57,6 +57,13 @@ aclocal || exit 1 autoconf || exit 1 autoheader || exit 1 +test -x $builddir/build/shtool || chmod +x $builddir/build/shtool +if test ! -x $builddir/build/shtool; then + echo "shtool at '$builddir/build/shtool' not executable. " + echo "Make sure that the file exists and is executable and then rerun this script. " + echo + exit 1 +fi libtoolize=`$builddir/build/shtool path glibtoolize libtoolize` $libtoolize -f -c || exit 1
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php