summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2005-12-05 04:22:37 +0000
committerIlia Alshanetsky <iliaa@php.net>2005-12-05 04:22:37 +0000
commitdbfdcef380fa04d6509fcb0f6c741e8c2e55028c (patch)
treee41757f4ff54cdea8377e6e299df7b21a1bd132d
parent92846c03d4c747c83135ffae706357faf39ba697 (diff)
downloadphp-git-dbfdcef380fa04d6509fcb0f6c741e8c2e55028c.tar.gz
MFB51:Avoid gcov conflicts on non-unique filenames
-rw-r--r--Makefile.gcov10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile.gcov b/Makefile.gcov
index db69eebb17..d19c8e449e 100644
--- a/Makefile.gcov
+++ b/Makefile.gcov
@@ -49,11 +49,11 @@ php_lcov.info: lcov-test
if test -f "$(top_builddir)/$$y.c"; then \
ln -f -s $(top_builddir)/$$y.c lcov_data/$$y.c; \
fi; \
- test -f "$$x.gcno" && cp $$x.gcno lcov_data/ ; \
- test -f "$$x.gcda" && cp $$x.gcda lcov_data/ ; \
- test -f "$$x.da" && cp $$x.da lcov_data/ ; \
- test -f "$$x.bb" && cp $$x.bb lcov_data/ ; \
- test -f "$$x.bbg" && cp $$x.bbg lcov_data/ ; \
+ test -f "$$x.gcno" && cp $$x.gcno lcov_data/$$y.gcno ; \
+ test -f "$$x.gcda" && cp $$x.gcda lcov_data/$$y.gcda ; \
+ test -f "$$x.da" && cp $$x.da lcov_data/$$y.da ; \
+ test -f "$$x.bb" && cp $$x.bb lcov_data/$$y.bb ; \
+ test -f "$$x.bbg" && cp $$x.bbg lcov_data/$$y.bbg ; \
done
@echo
@echo "Generating $@"