From: Melvyn Sopacua Date: Fri, 20 Dec 2002 00:25:56 +0000 (+0000) Subject: Fix libtool detection X-Git-Tag: php-4.3.0RC4~14 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e828c812cb9561d44e8b1f9cec848e5b3f7032c;p=php Fix libtool detection --- diff --git a/run-tests.php b/run-tests.php index b633fc2827..49c0d8fdbd 100755 --- a/run-tests.php +++ b/run-tests.php @@ -371,7 +371,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;