summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoragriffis <agriffis@gentoo.org>2005-03-07 23:50:08 +0000
committeragriffis <agriffis@gentoo.org>2005-03-07 23:50:08 +0000
commitc39b535b61474a77d20d34c8ea29bfcd7d645b43 (patch)
tree0f69a675f976269b34f5bca5770df4a81bc9dad3
parent921a72bed07708c55c5ffddad82901de581330bd (diff)
downloadgentoolkit-c39b535b61474a77d20d34c8ea29bfcd7d645b43.tar.gz
Remove stale debugging lines
svn path=/; revision=187
-rw-r--r--trunk/src/echangelog/echangelog2
1 files changed, 0 insertions, 2 deletions
diff --git a/trunk/src/echangelog/echangelog b/trunk/src/echangelog/echangelog
index 159817a..3e30323 100644
--- a/trunk/src/echangelog/echangelog
+++ b/trunk/src/echangelog/echangelog
@@ -53,7 +53,6 @@ if (-f 'ChangeLog') {
# Figure out what has changed around here
open C, 'cvs -fn up 2>&1 |' or die "Can't run cvs -fn up: $!\n";
while (<C>) {
- #print STDERR "cvs: $_";
/ChangeLog/ and next;
/^\? (\S+)/ and push @unknown, $1;
/^([ARMC]) (\S+)/ or next;
@@ -161,7 +160,6 @@ if (@ebuilds) {
open C, "cvs -f diff -U0 @ebuilds 2>&1 |" or die "Can't run cvs diff: $!\n";
$_ = <C>;
while (defined $_) {
- #print STDERR "cvs: $_";
if (/^cvs diff: (([^\/]*?)\.ebuild) was removed/) {
push @files, $1;
}