From: cypherpunks Date: Thu, 26 Feb 2015 09:38:09 +0000 (+0100) Subject: Use configured Python binary in test-stem. X-Git-Tag: tor-0.2.6.4-rc~8^2~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=334f74f6f123411c74cfd4c8614e40110c34690a;p=thirdparty%2Ftor.git Use configured Python binary in test-stem. --- 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"; \