aboutsummaryrefslogtreecommitdiffstats
path: root/CVSROOT
diff options
context:
space:
mode:
authorjoe <joe@FreeBSD.org>2002-08-19 07:01:17 +0800
committerjoe <joe@FreeBSD.org>2002-08-19 07:01:17 +0800
commite1538252925e91f9da84bdb8249c4d38455daa69 (patch)
tree7a2983b2b8fd3afedeaf89e8fbed8bb6e5c99923 /CVSROOT
parentfd7ecfb101d64f1b96d5939173dab7a93f9ea422 (diff)
downloadfreebsd-ports-gnome-e1538252925e91f9da84bdb8249c4d38455daa69.tar.gz
freebsd-ports-gnome-e1538252925e91f9da84bdb8249c4d38455daa69.tar.zst
freebsd-ports-gnome-e1538252925e91f9da84bdb8249c4d38455daa69.zip
* Improve a debugging message.
* There was too much space (three lines) between the diffs in commit mails. This reduces it to one. Submitted by: fanf
Diffstat (limited to 'CVSROOT')
-rwxr-xr-xCVSROOT/log_accum.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/CVSROOT/log_accum.pl b/CVSROOT/log_accum.pl
index 47e6639f7aa3..7da38b1e2579 100755
--- a/CVSROOT/log_accum.pl
+++ b/CVSROOT/log_accum.pl
@@ -600,8 +600,8 @@ sub do_diff {
"-r$prev_rev", "-r$rev", $file);
}
- print "Generating diff: $cfg::PROG_CVS " .
- "@args" if $cfg::DEBUG;
+ print "Generating diff: $cfg::PROG_CVS @args\n"
+ if $cfg::DEBUG;
open(DIFF, "-|") || exec $cfg::PROG_CVS, @args;
while(<DIFF>) {
$diff .= $_;
@@ -616,7 +616,7 @@ sub do_diff {
$diff_length . " bytes > " .
$cfg::MAX_DIFF_SIZE * 1024 . " bytes)!\n";
}
- &append_line($outfile, "\n\n$diff");
+ &append_line($outfile, "$diff");
}
}