From: terry%netscape.com <> Date: Thu, 22 Apr 1999 05:21:40 +0000 (+0000) Subject: Ignore blanks when doing diff. In particular, this helps hide any X-Git-Tag: bugzilla-2.4~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b7159d0b65d1be1211d79508427993dd3a0dfd5f;p=thirdparty%2Fbugzilla.git Ignore blanks when doing diff. In particular, this helps hide any problems we may have with differing end-of-line characters. --- diff --git a/processmail b/processmail index bdd1f2c045..3da6448e17 100755 --- a/processmail +++ b/processmail @@ -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'});