From ccee2960491664a56aa8249f06d86e040984ca1e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 23 Sep 2003 22:02:01 +0000 Subject: [PATCH] Fix bug in previous checkin git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8694 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/NightlyTest.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 50756bf3f6e..8ab3a59929f 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -198,7 +198,7 @@ my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$Prefix-Build-Log.txt"; my $BuildError = ""; if (`grep '^gmake[^:]*: .*Error' $Prefix-Build-Log.txt | wc -l` + 0 || - `grep '^gmake: \*\*\*.*Stop.`+0) { + `grep '^gmake: \*\*\*.*Stop.' $Prefix-Build-Log.txt | wc -l`+0) { $BuildError = "

Build error: compilation " . "aborted

"; }