summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcypherpunks <cypherpunks@torproject.org>2015-02-26 10:38:09 +0100
committerNick Mathewson <nickm@torproject.org>2015-02-26 15:23:43 -0500
commit334f74f6f123411c74cfd4c8614e40110c34690a (patch)
tree53b757ba441533f7c9094778a5ad7d21825f08d2
parentd7fcaca3fcbc46c2aebe556c6649ce1eddb833dd (diff)
downloadtor-334f74f6f123411c74cfd4c8614e40110c34690a.tar.gz
tor-334f74f6f123411c74cfd4c8614e40110c34690a.zip
Use configured Python binary in test-stem.
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 67c9cc9d25..b1f92f5b34 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -73,7 +73,7 @@ test-network: all
test-stem: $(TESTING_TOR_BINARY)
@if test -d "$$STEM_SOURCE_DIR"; then \
- "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL; \
+ $(PYTHON) "$$STEM_SOURCE_DIR"/run_tests.py --tor $(TESTING_TOR_BINARY) --all --log notice --target RUN_ALL; \
else \
echo '$$STEM_SOURCE_DIR was not set.'; echo; \
echo "To run these tests, git clone https://git.torproject.org/stem.git/ ; export STEM_SOURCE_DIR=\`pwd\`/stem"; \