From 310111e0939700d71b484640f7bd7e75905b63b8 Mon Sep 17 00:00:00 2001 From: DesWurstes Date: Mon, 25 Feb 2019 11:34:52 +0300 Subject: [PATCH] Keep LDFLAGS if `--coverage` --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 3b7a328..55e86a7 100644 --- a/configure.ac +++ b/configure.ac @@ -156,7 +156,7 @@ AC_CHECK_TYPES([__int128]) if test x"$enable_coverage" = x"yes"; then AC_DEFINE(COVERAGE, 1, [Define this symbol to compile out all VERIFY code]) CFLAGS="$CFLAGS -O0 --coverage" - LDFLAGS="--coverage" + LDFLAGS="$LDFLAGS --coverage" else CFLAGS="$CFLAGS -O3" fi