about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorGilad Naaman <gilad.naaman@gmail.com>2018-01-27 11:50:01 +0200
committerGilad Naaman <gilad.naaman@gmail.com>2018-01-27 11:50:01 +0200
commit8b7f1d0cec3884e07e2dd9ea4d0d4faeda5b95ed (patch)
tree4ee1c9006280f8d65e4f3fa159702068e77c7a48 /src
parent100ead353aecbaee2b710912e363e80184378690 (diff)
downloadrust-8b7f1d0cec3884e07e2dd9ea4d0d4faeda5b95ed.tar.gz
rust-8b7f1d0cec3884e07e2dd9ea4d0d4faeda5b95ed.zip
libtest: Fixed call to python in run-make
Diffstat (limited to 'src')
-rw-r--r--src/test/run-make/libtest-json/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-make/libtest-json/Makefile b/src/test/run-make/libtest-json/Makefile
index 9a62bc2666e..ec91ddfb9f9 100644
--- a/src/test/run-make/libtest-json/Makefile
+++ b/src/test/run-make/libtest-json/Makefile
@@ -8,7 +8,7 @@ all:
 	$(RUSTC) --test f.rs
 	$(call RUN,f) -Z unstable-options --test-threads=1 --format=json > $(OUTPUT_FILE) || true
 
-	cat $(OUTPUT_FILE) | $(PYTHON) validate_json.py
+	cat $(OUTPUT_FILE) | "$(PYTHON)" validate_json.py
 
 	# Compare to output file
 	diff output.json $(OUTPUT_FILE)