diff options
author | joe <joe@FreeBSD.org> | 2001-10-25 18:38:43 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2001-10-25 18:38:43 +0800 |
commit | bfbb6c0bfb0cabb8bd36ff472292f8007d924e63 (patch) | |
tree | af020fee367ff796916538cbc0789a69a1888319 /CVSROOT/cfg.pm | |
parent | afcb15c14763bc285676ac67872d608d4d38d4e4 (diff) | |
download | freebsd-ports-gnome-bfbb6c0bfb0cabb8bd36ff472292f8007d924e63.tar.gz freebsd-ports-gnome-bfbb6c0bfb0cabb8bd36ff472292f8007d924e63.tar.zst freebsd-ports-gnome-bfbb6c0bfb0cabb8bd36ff472292f8007d924e63.zip |
Fix the unintentional filtering of the 'revision changes path' line
in the function that adds cvsweb urls.
Diffstat (limited to 'CVSROOT/cfg.pm')
-rwxr-xr-x | CVSROOT/cfg.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CVSROOT/cfg.pm b/CVSROOT/cfg.pm index 50eec0f35762..81ce6c1e4cf5 100755 --- a/CVSROOT/cfg.pm +++ b/CVSROOT/cfg.pm @@ -143,9 +143,9 @@ sub add_cvsweb_entry { while (1) { my $line = shift @input; last unless defined($line); - last if $line =~ /^\s*Revision\s*Changes\s*Path\s*$/; push @output, $line; + last if $line =~ /^\s*Revision\s*Changes\s*Path\s*$/; } # Add the url links |