diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-12-25 16:43:36 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-12-25 16:43:36 -0700 |
commit | 2455209cb0051f562bb8d9525951ac902320afeb (patch) | |
tree | b673e039e764b19baeaf5b28a44821c5f1d93c7f /Makefile | |
parent | 72a556fd3bd17feaffba2fb6faa8c8f2a3931643 (diff) |
Makefile: specify python2 in places where it's needed.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ testziparchive: $(ZIPARCHIVE) mkdir build && cd build && cmake .. && make && ctest -V $(ALLTESTS): spec.txt - 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")' > $@ + 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")' > $@ leakcheck: $(ALLTESTS) cat $< | valgrind --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) >/dev/null |