Skip to content

Commit

Permalink
fix error message on make test when bison is not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
tony2001 committed Jan 18, 2006
1 parent f0b0e2c commit 01476c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -738,7 +738,7 @@ function test_sort($a, $b)
$failed_tests_data .= "Bundled Libtool:\n$libtool\n";
$failed_tests_data .= "System Libtool:\n$sys_libtool\n";
$failed_tests_data .= "Compiler:\n$compiler\n";
$failed_tests_data .= "Bison:\n". @shell_exec('bison --version'). "\n";
$failed_tests_data .= "Bison:\n". @shell_exec('bison --version 2>/dev/null'). "\n";
$failed_tests_data .= "Libraries:\n$ldd\n";
$failed_tests_data .= "\n";

Expand Down

0 comments on commit 01476c3

Please sign in to comment.