summaryrefslogtreecommitdiff
path: root/scripts/phpize.in
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2003-08-20 08:13:41 +0000
committerfoobar <sniper@php.net>2003-08-20 08:13:41 +0000
commit0985b0726f950514c5038a3d2be00558ab995a9c (patch)
tree362cd969c6ce51dd227690b5a4a0e7cfe8a9e784 /scripts/phpize.in
parent5649b2ca2af6eabf75ab638fad353097c99c39e4 (diff)
downloadphp-git-0985b0726f950514c5038a3d2be00558ab995a9c.tar.gz
- Fixed bug #25163 (OSX: phpize has to use glibtoolize instead)
Diffstat (limited to 'scripts/phpize.in')
-rw-r--r--scripts/phpize.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/phpize.in b/scripts/phpize.in
index 013718f7d7..8f29e0c00e 100644
--- a/scripts/phpize.in
+++ b/scripts/phpize.in
@@ -57,7 +57,8 @@ touch install-sh mkinstalldirs missing
aclocal || exit 1
autoconf || exit 1
autoheader || exit 1
-libtoolize -f -c || exit 1
+libtoolize=`$phpdir/shtool path glibtoolize libtoolize`
+$libtoolize -f -c || exit 1
# dumping API NOs:
PHP_API_VERSION=`egrep '#define PHP_API_VERSION' $includedir/main/php.h|sed 's/#define PHP_API_VERSION//'`