FDU alignment fix, verbose diff, don't build Tune

This commit is contained in:
curt mayer
2020-01-31 23:02:53 -08:00
parent 7b6faa3280
commit 389cd70e7e
3 changed files with 11 additions and 8 deletions

View File

@@ -142,9 +142,11 @@ diff::
if [ -f $$df -a -f $$sf ] ; then \
if ! cmp -s $$sf $$df ; then \
echo $$sf and $$df differ ; \
cmp -bl $$sf $$df ; \
hexdump -Cv $$sf > $$sf.dump ; \
hexdump -Cv $$df > $$(basename $$df).dump.diff ; \
if [ "$(VERBOSEDIFF)" ] ; then \
cmp -bl $$sf $$df ; \
hexdump -Cv $$sf > $$sf.dump ; \
hexdump -Cv $$df > $$(basename $$df).dump.diff ; \
fi \
fi \
fi \
done