summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-12-26 12:27:48 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-12-26 12:27:48 -0700
commita0f6493dda58a0ab905a80c73c19b1d76ff0c977 (patch)
treeb3ef7fe57946873dc5920b689c49a15a6879e6ae /Makefile
parentbf1539dfeaade30a7fa73c0ed2240b738dc54d3c (diff)
Revert "Makefile: specify python2 in places where it's needed."
This reverts commit 2455209cb0051f562bb8d9525951ac902320afeb.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 402120e..6723f2e 100644
--- a/Makefile
+++ b/Makefile
@@ -108,7 +108,7 @@ testziparchive: $(ZIPARCHIVE)
mkdir build && cd build && cmake .. && make && ctest -V
$(ALLTESTS): spec.txt
- python2 test/spec_tests.py --spec $< --dump-tests | python2 -c 'import json; import sys; tests = json.loads(sys.stdin.read()); print "\n".join([test["markdown"] for test in tests]).encode("utf-8")' > $@
+ python test/spec_tests.py --spec $< --dump-tests | python -c 'import json; import sys; tests = json.loads(sys.stdin.read()); print "\n".join([test["markdown"] for test in tests]).encode("utf-8")' > $@
leakcheck: $(ALLTESTS)
cat $< | valgrind --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) >/dev/null