Diff between 6f42c2c6f0543c7231229da7aef402657518f96b and 7144164cdf6a1c8cda87c36a77efc1539e8349a7

Changed Files

File Additions Deletions Status
configure.ac +5 -5 modified

Full Patch

diff --git a/configure.ac b/configure.ac
index a70d55a..0acd734 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,6 +32,11 @@ m4_ifdef([AC_LIBTOOL_TAGS], [AC_LIBTOOL_TAGS([])])
 AC_DISABLE_STATIC
 AC_PROG_LIBTOOL
 
+if (test "$USE_MAINTAINER_MODE" = "yes"); then
+	AC_CHECK_PROG(enable_coverage, [lcov], [yes], [no])
+fi
+AM_CONDITIONAL(COVERAGE, test "${enable_coverage}" = "yes")
+
 MISC_FLAGS
 
 AC_ARG_ENABLE(threads, AC_HELP_STRING([--enable-threads],
@@ -274,9 +279,4 @@ fi
 AC_DEFINE_UNQUOTED(ANDROID_STORAGEDIR, "${storagedir}/android",
 			[Directory for the Android daemon storage files])
 
-if (test "$USE_MAINTAINER_MODE" = "yes"); then
-	AC_CHECK_PROG(enable_coverage, [lcov], [yes], [no])
-fi
-AM_CONDITIONAL(COVERAGE, test "${enable_coverage}" = "yes")
-
 AC_OUTPUT(Makefile src/bluetoothd.8 lib/bluez.pc)