Skip to content
Snippets Groups Projects
Commit 6237247d authored by Tristan Matthews's avatar Tristan Matthews
Browse files

* #20736: daemon: cleanup coverage flags

parent 077a3aa8
No related branches found
No related tags found
No related merge requests found
...@@ -35,6 +35,7 @@ coverage: ...@@ -35,6 +35,7 @@ coverage:
coverage-clean: coverage-clean:
$(AM_V_at)lcov --directory $(top_builddir) --zerocounters $(AM_V_at)lcov --directory $(top_builddir) --zerocounters
$(AM_V_at)rm -rf sflphone-coverage.info $(AM_V_at)rm -rf sflphone-coverage.info
$(AM_V_at)rm -rf html-output
$(AM_V_at)find -name '*.gcda' -exec rm -f {} + $(AM_V_at)find -name '*.gcda' -exec rm -f {} +
$(AM_V_at)find -name '*.gcno' -exec rm -f {} + $(AM_V_at)find -name '*.gcno' -exec rm -f {} +
......
...@@ -98,8 +98,8 @@ dnl Coverage is default-disabled ...@@ -98,8 +98,8 @@ dnl Coverage is default-disabled
AC_ARG_ENABLE([coverage], AS_HELP_STRING([--enable-coverage], [Enable coverage])) AC_ARG_ENABLE([coverage], AS_HELP_STRING([--enable-coverage], [Enable coverage]))
AS_IF([test "x$enable_coverage" = "xyes"], [ AS_IF([test "x$enable_coverage" = "xyes"], [
CXXFLAGS="${CXXFLAGS} -fprofile-arcs -ftest-coverage" CXXFLAGS="${CXXFLAGS} --coverage"
LDFLAGS="${LDFLAGS} -fprofile-arcs -ftest-coverage"]) LDFLAGS="${LDFLAGS} --coverage"])
dnl Video is default-disabled dnl Video is default-disabled
AC_ARG_ENABLE([video], AS_HELP_STRING([--enable-video], [Enable video])) AC_ARG_ENABLE([video], AS_HELP_STRING([--enable-video], [Enable video]))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment