diff options
author | foobar <sniper@php.net> | 2005-04-01 13:40:46 (GMT) |
---|---|---|
committer | foobar <sniper@php.net> | 2005-04-01 13:40:46 (GMT) |
commit | 7f4e28d2bdf3a78d226e5338afbff2cfa1468121 (patch) | |
tree | a6eeab405fb201d3dbe1bd40f575ee621e4caeb1 /run-tests.php | |
parent | d17ccbdeee134419bdcb6a5ac7acbc329655be6d (diff) | |
download | php-7f4e28d2bdf3a78d226e5338afbff2cfa1468121.tar.gz |
- Fixed bug #32504 (shtool problem on make test)
Diffstat (limited to 'run-tests.php')
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php index 184adb1..ca09eec 100755 --- a/run-tests.php +++ b/run-tests.php @@ -511,7 +511,7 @@ if (!getenv('NO_INTERACTION')) { $libtool = shell_exec($CUR_DIR . '/libtool --version'); /* Use shtool to find out if there is glibtool present (MacOSX) */ - $sys_libtool_path = shell_exec(dirname(__FILE__) . "./build/shtool path glibtool libtool"); + $sys_libtool_path = shell_exec(dirname(__FILE__) . '/build/shtool path glibtool libtool'); $sys_libtool = shell_exec(str_replace("\n", "", $sys_libtool_path) . ' --version'); /* Try the most common flags for 'version' */ |