diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2005-12-05 04:22:16 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2005-12-05 04:22:16 +0000 |
commit | 6abf54a4895fb89b5d1f26ecc9c219ee3ea3d371 (patch) | |
tree | 1c943425971c4d9b3051a7ee830259bc3ee7eb24 /Makefile.gcov | |
parent | 55a299075be1ef982451543fc2f0be30880516ca (diff) | |
download | php-git-6abf54a4895fb89b5d1f26ecc9c219ee3ea3d371.tar.gz |
Avoid gcov conflicts on non-unique filenames
Diffstat (limited to 'Makefile.gcov')
-rw-r--r-- | Makefile.gcov | 10 |
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 $@" |