[cheese] Remove .gcno files during clean, not lcov-clean
- From: David King <davidk src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cheese] Remove .gcno files during clean, not lcov-clean
- Date: Sun, 25 Dec 2011 11:07:46 +0000 (UTC)
commit b8db33aa6bff6ff909ab56760c781c812e101ca1
Author: David King <amigadave amigadave com>
Date: Sun Dec 25 11:46:54 2011 +0100
Remove .gcno files during clean, not lcov-clean
Makefile.am | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
---
diff --git a/Makefile.am b/Makefile.am
index d63689a..11a9d1d 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -447,14 +447,14 @@ lcov: full-report
lcov-clean:
$(AM_V_at)$(LCOV) --directory $(top_builddir) -z
$(AM_V_at)rm -rf cheese-lcov.info cheese-lcov
- $(AM_V_at)find \( -name '*.gcda' -o -name '*.gcno' \) -exec rm -f {} +
+ $(AM_V_at)find -name '*.gcda' -exec rm -f {} +
else # !CHEESE_ENABLE_LCOV
lcov:
$(AM_V_at)echo "Code coverage reporting not available"
lcov-clean:
$(AM_V_at)rm -rf cheese-lcov.info cheese-lcov
- $(AM_V_at)find \( -name '*.gcda' -o -name '*.gcno' \) -exec rm -f {} +
+ $(AM_V_at)find -name '*.gcda' -exec rm -f {} +
endif
# gtk-doc
@@ -469,6 +469,7 @@ check-local: test
cd $(gtkdoc_builddir) && $(MAKE) $(AM_MAKEFlAGS) check
clean-local: lcov-clean
cd $(gtkdoc_builddir) && $(MAKE) $(AM_MAKEFLAGS) clean
+ find -name '*.gcno' -exec rm -f {} +
distclean-local:
cd $(gtkdoc_builddir) && $(MAKE) $(AM_MAKEFLAGS) distclean
docs: $(lib_LTLIBRARIES)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]