[tor-commits] [tor/maint-0.2.7] No spaces around = in variable assignment

nickm at torproject.org nickm at torproject.org
Tue Sep 29 08:11:01 UTC 2015


commit f75325c132847883a7ddc5f0f6e55847edc68507
Author: Marcin Cieślak <saper at saper.info>
Date:   Fri Sep 25 14:16:40 2015 +0000

    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
---
 src/or/include.am |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/or/include.am b/src/or/include.am
index 7b12b56..d0e955f 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 = \





More information about the tor-commits mailing list