aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-09-23 22:02:01 +0000
committerChris Lattner <sabre@nondot.org>2003-09-23 22:02:01 +0000
commitccee2960491664a56aa8249f06d86e040984ca1e (patch)
tree60565cf15ad50eb544d3c5e529249fe9ed17448b
parent4dcbd5e9a25dc5484462a6b001db9813270c8de4 (diff)
downloadexternal_llvm-ccee2960491664a56aa8249f06d86e040984ca1e.zip
external_llvm-ccee2960491664a56aa8249f06d86e040984ca1e.tar.gz
external_llvm-ccee2960491664a56aa8249f06d86e040984ca1e.tar.bz2
Fix bug in previous checkin
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8694 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/NightlyTest.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl
index 50756bf..8ab3a59 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 = "<h3><font color='red'>Build error: compilation " .
"<a href=\"$DATE-Build-Log.txt\">aborted</a></font></h3>";
}