summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2016-03-07 14:39:16 +0100
committerStefan Schmidt <stefan@osg.samsung.com>2016-03-07 14:39:16 +0100
commit2ae279060436e500b5605a13c919cd51f4344460 (patch)
tree82da873a3e57d3332dea26e51671b13b916f95a8
parent5181a4d0efd49a87562cf6612e21f8746ad413b6 (diff)
downloadefl-2ae279060436e500b5605a13c919cd51f4344460.tar.gz
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.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
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])