summaryrefslogtreecommitdiff
path: root/run-tests.php
diff options
context:
space:
mode:
authorMelvyn Sopacua <msopacua@php.net>2002-12-20 00:28:08 +0000
committerMelvyn Sopacua <msopacua@php.net>2002-12-20 00:28:08 +0000
commita4d56067e2f02deb691f0aa16be5b4cd8c50b430 (patch)
treea8792196097d887ab546e72cf844c1bf22be208d /run-tests.php
parent602734c7d9f2ad58d1ce8cedd6384dbfbdfd06bb (diff)
downloadphp-git-a4d56067e2f02deb691f0aa16be5b4cd8c50b430.tar.gz
MFB: libtool detection
Diffstat (limited to 'run-tests.php')
-rwxr-xr-xrun-tests.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php
index 443e20ee64..edfc78baf6 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -372,7 +372,8 @@ if (!getenv('NO_INTERACTION')) {
if (substr(PHP_OS, 0, 3) != "WIN") {
$automake = shell_exec('automake --version');
$autoconf = shell_exec('autoconf --version');
- $libtool = shell_exec('libtool --version');
+ /* Always use the generated libtool - Mac OSX uses 'glibtool' */
+ $libtool = shell_exec('./libtool --version');
/* Try the most common flags for 'version' */
$flags = array('-v', '-V', '--version');
$cc_status=0;