From 2e828c812cb9561d44e8b1f9cec848e5b3f7032c Mon Sep 17 00:00:00 2001 From: Melvyn Sopacua Date: Fri, 20 Dec 2002 00:25:56 +0000 Subject: [PATCH] Fix libtool detection --- run-tests.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; -- 2.50.1