diff options
author | joe <joe@FreeBSD.org> | 2001-10-29 01:16:36 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-10-29 01:16:36 +0800 |
commit | 13dc106fdbc956dc85f3a75926ff1dbe8ecf9176 (patch) | |
tree | 98a364a8967cff6c294572b5d44f9f0f8af2cecc /CVSROOT/log_accum.pl | |
parent | c43226927a4aef037a87836206c846242c7a6014 (diff) | |
download | freebsd-ports-gnome-13dc106fdbc956dc85f3a75926ff1dbe8ecf9176.tar.gz freebsd-ports-gnome-13dc106fdbc956dc85f3a75926ff1dbe8ecf9176.tar.zst freebsd-ports-gnome-13dc106fdbc956dc85f3a75926ff1dbe8ecf9176.zip |
Sort filenames so that entries in the generated email are not
dependant upon the order that the committer specified them.
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 aef253943b1e..6ed58021e39b 100755 --- a/CVSROOT/log_accum.pl +++ b/CVSROOT/log_accum.pl @@ -194,7 +194,7 @@ sub format_lists { push @files, $line; } } - push @text, &format_names($lastdir, @files); + push @text, &format_names($lastdir, sort @files); return @text; } @@ -598,7 +598,7 @@ if ($cfg::DEBUG) { # Was used for To: lines, still used for commitlogs naming. &append_line($MAIL_FILE, &mlist_map("$directory/")); -&append_line($SUBJ_FILE, $input_params); +&append_line($SUBJ_FILE, "$directory " . join(" ", sort @filenames)); # # Check for a new directory first. This will always appear as a |