Generate brief logs for beos builds. Fix for bug 37218. Patch contributed by Justin Morey <justin@68k.org>

This commit is contained in:
endico%mozilla.org 2000-08-01 01:36:35 +00:00
Родитель 9caea97bd1
Коммит 0ec3ab5882
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -32,13 +32,13 @@ BEGIN {
# Special case gmake to mark the "Leaving directory"
# line as an error too.
if (/^gmake(?:\[\d\d?\])?: \*\*\*/) {
if (/^g?make(?:\[\d\d?\])?: \*\*\*/) {
$last_error_was_gmake = 1;
return 1;
}
if ($last_error_was_gmake
and /^gmake(?:\[\d\d?\])?: Leaving directory/) {
and /^g?make(?:\[\d\d?\])?: Leaving directory/) {
return 1;
}