summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <philip@tecnocode.co.uk>2017-03-05 20:19:25 +0000
committerPhilip Withnall <philip@tecnocode.co.uk>2017-03-05 20:20:19 +0000
commit0d8ed048c0ed7d3546232526cc60b8daaded4a00 (patch)
treecf73d757baeefce561e1eed27e102e432c8df6bc
parent0d5e38fad7cbb138aa0d08367a6ea9f004c9a960 (diff)
downloadlibgdata-0d8ed048c0ed7d3546232526cc60b8daaded4a00.tar.gz
build: Distclean default.profraw files
They’re generated by Clang in the build directory when building with code coverage enabled. After a distclean they are no longer relevant (and are breaking distcheck).
-rw-r--r--Makefile.am4
-rw-r--r--gdata/tests/Makefile.am3
2 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 958f98cb..4453f7b9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -824,7 +824,9 @@ CLEANFILES += \
`find "$(srcdir)" -type f -name .dirstamp -print`
DISTCLEANFILES = \
- gtk-doc.make
+ gtk-doc.make \
+ default.profraw \
+ $(NULL)
MAINTAINERCLEANFILES += \
$(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \
diff --git a/gdata/tests/Makefile.am b/gdata/tests/Makefile.am
index 8a9b4d80..d5a1de5c 100644
--- a/gdata/tests/Makefile.am
+++ b/gdata/tests/Makefile.am
@@ -403,4 +403,7 @@ dist_test_data = \
traces/tasks/teardown-update-tasklist \
$(NULL)
+# Clang code coverage
+DISTCLEANFILES += default.profraw
+
-include $(top_srcdir)/git.mk