From 2ae279060436e500b5605a13c919cd51f4344460 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Mon, 7 Mar 2016 14:39:16 +0100 Subject: [PATCH] build: do not use DEBUG when running with coverage Do not force this on everybody who runs with tests=coverage. It makes stdout impossible to follow as well as overruns the tests log file. If one wants to run with -DDEBUG it can be set from your own CFLAGS. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7fde8c3967..fd6bf200c0 100644 --- a/configure.ac +++ b/configure.ac @@ -334,7 +334,7 @@ if test "${want_coverage}" = "yes" ; then if test "x${prefer_assert}" = "xno"; then EFLALL_COV_CFLAGS="${EFLALL_COV_CFLAGS} -DNDEBUG" else - EFLALL_COV_CFLAGS="${EFLALL_COV_CFLAGS} -g -O0 -DDEBUG" + EFLALL_COV_CFLAGS="${EFLALL_COV_CFLAGS} -g -O0" fi else AC_MSG_ERROR([lcov is not found])