]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove a couple of redundant lines from the makefile
authorNick Mathewson <nickm@torproject.org>
Mon, 28 Mar 2016 20:11:25 +0000 (16:11 -0400)
committerNick Mathewson <nickm@torproject.org>
Mon, 28 Mar 2016 20:11:25 +0000 (16:11 -0400)
Fixes the last case of 17744.

changes/bug17744_redux [new file with mode: 0644]
configure.ac

diff --git a/changes/bug17744_redux b/changes/bug17744_redux
new file mode 100644 (file)
index 0000000..d61e17f
--- /dev/null
@@ -0,0 +1,5 @@
+  o Minor bugfixes (build):
+    - Remove a pair of redundant AM_CONDITIONAL declarations from
+      configure.ac. Fixes one final case of bug 17744; bugfix on
+      0.2.8.2-alpha.
+
index ad71f7fdda37f0c9070e0da0bb1fee40fa85279d..e4816fdbd75ed607d96682bd32797cadc1d04864 100644 (file)
@@ -58,8 +58,6 @@ fi
 
 AM_CONDITIONAL(UNITTESTS_ENABLED, test "x$enable_unittests" != "xno")
 AM_CONDITIONAL(COVERAGE_ENABLED, test "x$enable_coverage" = "xyes")
-AM_CONDITIONAL(UNITTESTS_ENABLED, test x$enable_unittests != xno)
-AM_CONDITIONAL(COVERAGE_ENABLED, test x$enable_coverage = xyes)
 AM_CONDITIONAL(DISABLE_ASSERTS_IN_UNIT_TESTS, test "x$enable_asserts_in_tests" = "xno")
 
 if test "$enable_static_tor" = "yes"; then