[llvm-commits] CVS: CVSROOT/commit-diffs.pl
Chris Lattner
lattner at cs.uiuc.edu
Mon Sep 30 14:30:01 PDT 2002
Changes in directory CVSROOT:
commit-diffs.pl updated: 1.29 -> 1.30
---
Log message:
Attempt to get rid of "can not lock" messages from checkins
---
Diffs of the changes:
Index: CVSROOT/commit-diffs.pl
diff -u CVSROOT/commit-diffs.pl:1.29 CVSROOT/commit-diffs.pl:1.30
--- CVSROOT/commit-diffs.pl:1.29 Tue Sep 17 18:22:08 2002
+++ CVSROOT/commit-diffs.pl Mon Sep 30 14:29:44 2002
@@ -51,7 +51,7 @@
# Do a small delay so that the main CVS task finishes and
# releases locks first.
-sleep 3;
+sleep 10;
if ($DEBUG) {
for ($i=0; $i<8; $i++) {
@@ -118,7 +118,7 @@
$msg .= "$m->{'filename'} (r$m->{'oldrev'}) removed\n";
} else {
$msg .= "$m->{'filename'} updated: $m->{'oldrev'} -> $m->{'newrev'}\n";
- $diffs .= `cvs -Qf rdiff -u -r $m->{'oldrev'} -r $m->{'newrev'} $changedir/$m->{'filename'}` . "\n\n";
+ $diffs .= `cvs -Qf rdiff -u -r $m->{'oldrev'} -r $m->{'newrev'} $changedir/$m->{'filename'} 2> /dev/null` . "\n\n";
}
}
$msg .= "\n---\nLog message:\n\n" . join('', at logmessage);
More information about the llvm-commits
mailing list