diff options
author | peter <peter@FreeBSD.org> | 1996-02-17 02:53:12 +0800 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1996-02-17 02:53:12 +0800 |
commit | 5ccef23ba8129867ad16046ab0c6ca18ea9df6e5 (patch) | |
tree | 1be7ae7922959dbbbb4e6cb012eba497de11a115 /CVSROOT/log_accum.pl | |
parent | 1160fc2e7e81ba2c8cd2569b6af380a26a53444b (diff) | |
download | freebsd-ports-gnome-5ccef23ba8129867ad16046ab0c6ca18ea9df6e5.tar.gz freebsd-ports-gnome-5ccef23ba8129867ad16046ab0c6ca18ea9df6e5.tar.zst freebsd-ports-gnome-5ccef23ba8129867ad16046ab0c6ca18ea9df6e5.zip |
An (ahem) "hack" to stop the duplicate mail messages going to cvs-all..
Diffstat (limited to 'CVSROOT/log_accum.pl')
-rwxr-xr-x | CVSROOT/log_accum.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl index 9b437456405a..81da41f827e5 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl # -# $Id$ +# $Id: log_accum.pl,v 1.17 1996/02/07 14:35:38 peter Exp $ # # Perl filter to handle the log messages from the checkin of files in # a directory. This script will group the lists of files by log @@ -359,7 +359,7 @@ sub mail_notification { print "Mailing the commit message...\n"; dbmopen(%MAILFILE, "$MAIL_FILE.$id", 0666); - $names = "CVS-committers " . join(" ", keys %MAILFILE); + $names = "CVS-committers,cvs-all," . join(",", keys %MAILFILE); $names =~ s,\n,,; dbmclose(%MAILFILE); |