[tor-commits] [tor/release-0.4.0] Fix a goofy change from abcde10fce that broke test-slow linking

nickm at torproject.org nickm at torproject.org
Thu Feb 21 14:10:38 UTC 2019


commit 34183f0d71c2e2d10e3d64291e3bb83a27c2416a
Author: Nick Mathewson <nickm at torproject.org>
Date:   Thu Feb 21 09:06:51 2019 -0500

    Fix a goofy change from abcde10fce that broke test-slow linking
    
    boklm tracked this down, and it doesn't make sense.  It caused
    
    This change goes back to the previous LDFLAGS line.
---
 src/test/include.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/include.am b/src/test/include.am
index 9bfc626b2..d585c2a38 100644
--- a/src/test/include.am
+++ b/src/test/include.am
@@ -259,7 +259,7 @@ src_test_test_LDADD = \
 src_test_test_slow_CPPFLAGS = $(src_test_test_CPPFLAGS)
 src_test_test_slow_CFLAGS = $(src_test_test_CFLAGS)
 src_test_test_slow_LDADD = $(src_test_test_LDADD)
-src_test_test_slow_LDFLAGS = @TOR_LDFLAGS_openssl@ @TOR_LDFLAGS_libevent@
+src_test_test_slow_LDFLAGS = $(src_test_test_LDFLAGS)
 
 src_test_test_rng_CPPFLAGS = $(src_test_test_CPPFLAGS)
 src_test_test_rng_CFLAGS = $(src_test_test_CFLAGS)





More information about the tor-commits mailing list