aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-12-09 13:31:34 -0500
committerNick Mathewson <nickm@torproject.org>2020-12-09 13:31:34 -0500
commitce1c3c689881f069b31a1345d0807a5c125ba615 (patch)
treed26f64f028672a35c93efc795e7e6ce4c01fd02b
parent2bfb76b927111824a2051d09b1f5542ee58e2a6f (diff)
downloadtor-ce1c3c689881f069b31a1345d0807a5c125ba615.tar.gz
tor-ce1c3c689881f069b31a1345d0807a5c125ba615.zip
Fix a typo in coverage builds.
We should be using TOR_STATIC_LDFLAGS, not TOR_STATIC_LDFALGS. Bug not in any released version of Tor.
-rw-r--r--src/app/include.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app/include.am b/src/app/include.am
index 8bb315fff1..2e2180deca 100644
--- a/src/app/include.am
+++ b/src/app/include.am
@@ -28,7 +28,7 @@ src_app_tor_cov_SOURCES = $(src_app_tor_SOURCES)
src_app_tor_cov_CPPFLAGS = $(AM_CPPFLAGS) $(TEST_CPPFLAGS)
src_app_tor_cov_CFLAGS = $(AM_CFLAGS) $(TEST_CFLAGS)
src_app_tor_cov_LDFLAGS = @TOR_LDFLAGS_zlib@ $(TOR_LDFLAGS_CRYPTLIB) \
- @TOR_LDFLAGS_libevent@ @TOR_STATIC_LDFALGS@
+ @TOR_LDFLAGS_libevent@ @TOR_STATIC_LDFLAGS@
src_app_tor_cov_LDADD = src/test/libtor-testing.a \
@TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ $(TOR_LIBS_CRYPTLIB) \
@TOR_LIB_WS32@ @TOR_LIB_IPHLPAPI@ @TOR_LIB_SHLWAPI@ @TOR_LIB_GDI@ \