summaryrefslogtreecommitdiffstats
path: root/tools/cvslog2changelog.pl
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-06-03 16:23:01 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-06-03 16:23:01 +0000
commit46ca3840aa97b3e0bd75518907680a7c9c116252 (patch)
treee89581bf7ebaca3b0b18303aeb159576f2e17aee /tools/cvslog2changelog.pl
parent6709a7967968891dd3e3c43bfe16eaf9ea39256c (diff)
downloaddrakx-backup-do-not-use-46ca3840aa97b3e0bd75518907680a7c9c116252.tar
drakx-backup-do-not-use-46ca3840aa97b3e0bd75518907680a7c9c116252.tar.gz
drakx-backup-do-not-use-46ca3840aa97b3e0bd75518907680a7c9c116252.tar.bz2
drakx-backup-do-not-use-46ca3840aa97b3e0bd75518907680a7c9c116252.tar.xz
drakx-backup-do-not-use-46ca3840aa97b3e0bd75518907680a7c9c116252.zip
add AUTHOR environment option for my warly reports
Diffstat (limited to 'tools/cvslog2changelog.pl')
-rwxr-xr-xtools/cvslog2changelog.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/cvslog2changelog.pl b/tools/cvslog2changelog.pl
index 9eab56884..77d67449b 100755
--- a/tools/cvslog2changelog.pl
+++ b/tools/cvslog2changelog.pl
@@ -17,6 +17,8 @@ while (<>) {
foreach $date (reverse sort keys %l) {
foreach $user (sort keys %{$l{$date}}) {
+ next if $ENV{AUTHOR} && $ENV{AUTHOR} ne $user;
+
$fuser = $users{$user} || $user;
print "$date $fuser\n\n";
my %inv;