Ignore blanks when doing diff. In particular, this helps hide any

problems we may have with differing end-of-line characters.


git-svn-id: svn://10.0.0.236/trunk@28558 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
terry%netscape.com 1999-04-21 22:21:40 +00:00
parent 1cb64396ba
commit 22b2ffcef5

View File

@ -253,7 +253,7 @@ foreach my $i (@ARGV) {
print FID $text;
close FID;
if (Different($old, $new)) {
system("diff -c $old $new > $diffs");
system("diff -c -b $old $new > $diffs");
my $tolist = fixaddresses([$::bug{'assigned_to'}, $::bug{'reporter'},
$::bug{'qa_contact'}]);
my $cclist = fixaddresses($::bug{'cclist'});