This fixes #26526 the white space problem

This commit is contained in:
Johannes Scheuermann 2016-05-30 15:32:43 +02:00
parent 9aeeef1d81
commit ec26e62ec3

View File

@ -95,7 +95,7 @@ while read file; do
# By now, the contents should be normalized and stripped of any
# auto-managed content.
if diff -Bw >/dev/null <(echo "${original}") <(echo "${generated}"); then
if diff -B >/dev/null <(echo "${original}") <(echo "${generated}"); then
# actual contents same, overwrite generated with original.
cp "${OUTPUT}/${file}" "${OUTPUT_TMP}/${file}"
fi