Fix a bug in report() which prevented two failure reports today from

reaching the lists.  Also add support for tinderbox.pl's --date option.
This commit is contained in:
Dag-Erling Smørgrav 2003-05-17 22:38:36 +00:00
parent a0b6213b05
commit a0b3c56374

View File

@ -125,7 +125,7 @@ sub report($$$$) {
my $message = shift;
local *PIPE;
if (open(PIPE, "|-", "/usr/sbin/sendmail -t -f$sender")) {
if (open(PIPE, "|-", "/usr/sbin/sendmail", "-i", "-t", "-f$sender")) {
print(PIPE "Sender: $sender\n");
print(PIPE "From: $sender\n");
print(PIPE "To: $recipient\n");
@ -195,6 +195,8 @@ sub tinderbox($$$) {
push(@args, "--branch=$branch");
push(@args, "--arch=$arch");
push(@args, "--machine=$machine");
push(@args, "--date=$CONFIG{'DATE'}")
if (defined($CONFIG{'DATE'}));
push(@args, "--patch=$CONFIG{'PATCH'}")
if (defined($CONFIG{'PATCH'}));
push(@args, @{$CONFIG{'TARGETS'}});