]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove duplicate MODULE_DIRAUTH_SOURCES from libtor_testing.a
authorNick Mathewson <nickm@torproject.org>
Mon, 18 Jun 2018 21:03:52 +0000 (17:03 -0400)
committerNick Mathewson <nickm@torproject.org>
Mon, 18 Jun 2018 21:07:27 +0000 (17:07 -0400)
This was already added to LIBTOR_A_SOURCES; it doesn't need to get
added again.

Fixes bug 26402. Bugfix on 0.3.4.1-alpha.

changes/bug26402 [new file with mode: 0644]
src/or/include.am

diff --git a/changes/bug26402 b/changes/bug26402
new file mode 100644 (file)
index 0000000..b21283a
--- /dev/null
@@ -0,0 +1,4 @@
+  o Minor bugfixes (compilation):
+    - When linking the libtor_testing.a library, only include the dirauth
+      object files once.  Previously, they were getting added twice.
+      Fixes bug 26402; bugfix on 0.3.4.1-alpha.
index 0e2aac4aae08fcd2e9a02258a2e8529fa7c067e9..33d76eebd3c6c187da1ac0e1a3ffbee006794f6b 100644 (file)
@@ -131,7 +131,7 @@ endif
 
 src_or_libtor_a_SOURCES = $(LIBTOR_A_SOURCES)
 if UNITTESTS_ENABLED
-src_or_libtor_testing_a_SOURCES = $(LIBTOR_A_SOURCES) $(MODULE_DIRAUTH_SOURCES)
+src_or_libtor_testing_a_SOURCES = $(LIBTOR_A_SOURCES)
 else
 src_or_libtor_testing_a_SOURCES =
 endif