diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-10-11 13:42:27 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-10-11 13:42:27 -0400 |
commit | d5f050111ecd93c6ddb80be79ff9d636f40d5ed7 (patch) | |
tree | 30065b00c12beccc40736e5de089ad717eb72a3f /src | |
parent | f308adf8382bc7e61ea05a172057260cf8be9a6b (diff) | |
download | tor-d5f050111ecd93c6ddb80be79ff9d636f40d5ed7.tar.gz tor-d5f050111ecd93c6ddb80be79ff9d636f40d5ed7.zip |
Fix out-of-tree "make check-local"
Diffstat (limited to 'src')
-rw-r--r-- | src/test/include.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/include.am b/src/test/include.am index c452d2659e..41e115353e 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 |