summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorYuki Izumi <kivikakk@github.com>2017-05-05 18:02:34 +1000
committerJohn MacFarlane <jgm@berkeley.edu>2017-05-05 10:02:34 +0200
commit6313fff5f9482bdc0489dd19bf9c4ff6ed817e71 (patch)
tree7a3b05970662eee284fd70e68d21c49e4fb16e8f /Makefile
parent12501f1000f592ff67cca98b6733f0bfa3115f9f (diff)
Remove normalize as an option per #190 (#194)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 1c3fc98..987ed2b 100644
--- a/Makefile
+++ b/Makefile
@@ -135,7 +135,7 @@ $(ALLTESTS): $(SPEC)
leakcheck: $(ALLTESTS)
for format in html man xml latex commonmark; do \
- for opts in "" "--smart" "--normalize"; do \
+ for opts in "" "--smart"; do \
echo "cmark -t $$format $$opts" ; \
valgrind -q --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) -t $$format $$opts $(ALLTESTS) >/dev/null || exit 1;\
done; \