Skip to content

Commit

Permalink
Remove gcov -p option
Browse files Browse the repository at this point in the history
This should fix make cover for older versions of Devel::Cover. But
some gcov files will now be overwritten.
  • Loading branch information
nwellnhof committed Dec 28, 2010
1 parent 12e7238 commit 401fcfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/gen/makefiles/root.in
Expand Up @@ -2615,7 +2615,7 @@ cover: \
do \
for file in $$dir/*.c; \
do \
$(GCOV) -p -o $$dir $$file; \
$(GCOV) -o $$dir $$file; \
done \
done
if [ -n "$(GCOV2PERL)" -a -n "$(COVER)" ]; \
Expand All @@ -2635,7 +2635,7 @@ quickcover: \
do \
for file in $$dir/*.c; \
do \
$(GCOV) -p -o $$dir $$file; \
$(GCOV) -o $$dir $$file; \
done \
done
if [ -n "$(GCOV2PERL)" -a -n "$(COVER)" ]; \
Expand Down

0 comments on commit 401fcfb

Please sign in to comment.