summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Kost <ensonic@users.sourceforge.net>2005-07-05 12:17:24 +0000
committerStefan Kost <ensonic@users.sourceforge.net>2005-07-05 12:17:24 +0000
commite066e8b6169aad64906fe71546b20633abc83f3a (patch)
treefd65283108b5f0896abe06b7fc8ba0947a52521b
parent82a5239bfeb1c7b50a91783b2c3c4ea0981d12d4 (diff)
better report genration target (lcov needs a patch)
Original commit message from CVS: better report genration target (lcov needs a patch)
-rw-r--r--ChangeLog5
-rw-r--r--Makefile.am6
2 files changed, 6 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 94416a8b0..ba7f55f5f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-05 Stefan Kost <ensonic@users.sf.net>
+
+ * Makefile.am:
+ better report genration target (lcov needs a patch)
+
2005-07-05 Andy Wingo <wingo@pobox.com>
* gst/elements, testsuite: Null if we got it...
diff --git a/Makefile.am b/Makefile.am
index 00fba601c..2e2adbe44 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -110,11 +110,7 @@ coverage-report.txt:
test-coverage-report.html:
mkdir -p ./coverage
lcov --directory . --zerocounters
- $(MAKE) check
- ## workaround for lcov not liking libtool
- for file in `find . -name "*.da" | grep "\.libs" ` ;do \
- mv $$file `echo $$file | sed -e 's/\/\.libs//'`; \
- done
+ -$(MAKE) check
lcov --directory . --capture --output-file ./coverage/$(PACKAGE).info
genhtml -o ./coverage --num-spaces 2 ./coverage/$(PACKAGE).info