There's no reason for diff call here to not always ignore whitespace.

This commit is contained in:
Bradley M. Kuhn 2012-05-24 09:43:42 -04:00
parent 232072ed9e
commit c3be8155aa

View file

@ -221,7 +221,7 @@ if ($DO_DIFF) {
foreach my $file (sort(keys %final)) {
if ($origFiles2sha1->{$file} ne $comparedFiles2sha1->{$file}) {
system(
"/usr/bin/diff -u \"$origDir/$file\" \"$comparedDir/$file\" >> $diffOutputFile 2>&1");
"/usr/bin/diff -wu \"$origDir/$file\" \"$comparedDir/$file\" >> $diffOutputFile 2>&1");
}
}
}