summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Cieślak <saper@saper.info>2015-09-25 14:16:40 +0000
committerNick Mathewson <nickm@torproject.org>2015-09-29 10:09:02 +0200
commitf75325c132847883a7ddc5f0f6e55847edc68507 (patch)
tree047791238d0856865a2d3da806ce76944c403be9
parent546d70dc7c5c2fd6687d3aaa0ff3c52c6c7dc4de (diff)
downloadtor-f75325c132847883a7ddc5f0f6e55847edc68507.tar.gz
tor-f75325c132847883a7ddc5f0f6e55847edc68507.zip
No spaces around = in variable assignment
BSD make takes spaces around = literally and produces a "TESTING_TOR_BINARY " variable with a trailing space, which leads to test_keygen.sh failure. Fixes 17154
-rw-r--r--src/or/include.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/include.am b/src/or/include.am
index 7b12b56eb1..d0e955f495 100644
--- a/src/or/include.am
+++ b/src/or/include.am
@@ -123,9 +123,9 @@ src_or_tor_cov_LDADD = src/or/libtor-testing.a src/common/libor-testing.a \
src/common/libor-event-testing.a src/trunnel/libor-trunnel-testing.a \
@TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ \
@TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ @TOR_SYSTEMD_LIBS@
-export TESTING_TOR_BINARY = $(top_builddir)/src/or/tor-cov
+export TESTING_TOR_BINARY=$(top_builddir)/src/or/tor-cov
else
-export TESTING_TOR_BINARY = $(top_builddir)/src/or/tor
+export TESTING_TOR_BINARY=$(top_builddir)/src/or/tor
endif
ORHEADERS = \