summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-06 15:18:14 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-06 15:18:14 +0000
commit44159b057e5210b9045f26fcbd6ff3c5681eeb79 (patch)
tree24eefff017a4b648ed337d7573ab3ff9906e4022 /bin
parent8b8cfdefc5ee7dfafa2c3b4fbe0ff3d4214637b4 (diff)
downloadATCD-44159b057e5210b9045f26fcbd6ff3c5681eeb79.tar.gz
ChangeLogTag: Tue Jul 06 10:17:12 1999 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/check_build_logs5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/check_build_logs b/bin/check_build_logs
index 9a03c6f1dee..a0052cd75e6 100755
--- a/bin/check_build_logs
+++ b/bin/check_build_logs
@@ -11,13 +11,14 @@ $usage="$0 [-l log directory] [-m mail recipient(s)]\n";
####
#### Configuration parameters.
####
+$subject = 'ACE+TAO build results';
$find = 'find';
-$mail = 'mail';
+$mail = "mail -s '$subject'";
$ostype = $ENV{'OSTYPE'} || `/bin/uname -s`;
if ( "$ostype" =~ /(solaris)|(SunOS)/i ) {
$find = '/pkg/gnu/bin/find';
- $mail = 'mailx';
+ $mail = "/pkg/mh/bin/mhmail -subject '$subject'";
}