[tor-commits] [tor/master] Fix out-of-tree "make check-local"
nickm at torproject.org
nickm at torproject.org
Fri Oct 11 17:42:31 UTC 2013
commit d5f050111ecd93c6ddb80be79ff9d636f40d5ed7
Author: Nick Mathewson <nickm at torproject.org>
Date: Fri Oct 11 13:42:27 2013 -0400
Fix out-of-tree "make check-local"
---
src/test/include.am | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/test/include.am b/src/test/include.am
index c452d26..41e1153 100644
--- a/src/test/include.am
+++ b/src/test/include.am
@@ -87,9 +87,9 @@ endif
check-local: $(NTOR_TEST_DEPS) $(CMDLINE_TEST_TOR)
if USEPYTHON
- $(PYTHON) src/test/test_cmdline_args.py $(CMDLINE_TEST_TOR) "${top_srcdir}"
+ $(PYTHON) $(top_srcdir)/src/test/test_cmdline_args.py $(CMDLINE_TEST_TOR) "${top_srcdir}"
if CURVE25519_ENABLED
- $(PYTHON) src/test/ntor_ref.py test-tor
- $(PYTHON) src/test/ntor_ref.py self-test
+ $(PYTHON) $(top_srcdir)/src/test/ntor_ref.py test-tor
+ $(PYTHON) $(top_srcdir)/src/test/ntor_ref.py self-test
endif
endif
More information about the tor-commits
mailing list