diff --git a/Makefile.coq.local b/Makefile.coq.local index 93954f4a7d7022ed0d1244db34e271f91ba283ec..196539e9285c97f784c283a26df71fb1a0884166 100644 --- a/Makefile.coq.local +++ b/Makefile.coq.local @@ -12,7 +12,7 @@ $(TESTFILES:.v=.vo): %.vo: %.v $(VFILES:.v=.vo) $(HIDE)TEST="$$(basename -s .v $<)" && \ TMPFILE="$$(mktemp)" && \ $(TIMER) $(COQC) $(COQDEBUG) $(TIMING_ARG) $(COQFLAGS) $(COQLIBS) $< $(TIMING_EXTRA) > "$$TMPFILE" && \ - (diff --color=auto -u "tests/$$TEST.ref" "$$TMPFILE" || (rm "tests/$$TEST.vo" "$$TMPFILE" && exit 1)) && \ + (diff -u "tests/$$TEST.ref" "$$TMPFILE" || (rm "tests/$$TEST.vo" "$$TMPFILE" && exit 1)) && \ rm "$$TMPFILE" # a target, for convenience sake, to create the .ref file with the current output