diff options
author | joe <joe@FreeBSD.org> | 2002-08-19 07:01:17 +0800 |
---|---|---|
committer | joe <joe@FreeBSD.org> | 2002-08-19 07:01:17 +0800 |
commit | e1538252925e91f9da84bdb8249c4d38455daa69 (patch) | |
tree | 7a2983b2b8fd3afedeaf89e8fbed8bb6e5c99923 /CVSROOT | |
parent | fd7ecfb101d64f1b96d5939173dab7a93f9ea422 (diff) | |
download | freebsd-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-x | CVSROOT/log_accum.pl | 6 |
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"); } } |