From a8a5e62760f3a60311c4c5f7f6e45689c1ef540e Mon Sep 17 00:00:00 2001 From: Hisham Date: Fri, 19 Feb 2016 13:40:21 -0200 Subject: [PATCH] Force -lgcov harder when running `make coverage`. Shouldn't be needed, but I had to make this tweak to make this work again. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 8b31627..19c9eb4 100644 --- a/Makefile.am +++ b/Makefile.am @@ -95,7 +95,7 @@ debug: $(MAKE) all CFLAGS="" AM_CPPFLAGS="-ggdb -DDEBUG" coverage: - $(MAKE) all CFLAGS="" AM_CPPFLAGS="-fprofile-arcs -ftest-coverage -DDEBUG" AM_LDFLAGS="-lgcov" + $(MAKE) all CFLAGS="" AM_CPPFLAGS="-fprofile-arcs -ftest-coverage -DDEBUG" LDFLAGS="-lgcov" .c.h: @srcdir@/scripts/MakeHeader.py $< -- GitLab