Skip to content

Commit

Permalink
fix race condition in find (it was finding the copied files over and …
Browse files Browse the repository at this point in the history
…over again, and recursing forever)
  • Loading branch information
nunoplopes committed Feb 20, 2012
1 parent ecd13fd commit 0cb2606
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile.gcov
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ php_lcov.info: lcov-test
@rm -rf lcov_data/ @rm -rf lcov_data/
@$(mkinstalldirs) lcov_data/ @$(mkinstalldirs) lcov_data/
@echo @echo
-@find . -name \*.gcda -o -name \*.gcno -o -name \*.da -o -name \*.h | sed -e 's/^\.\///' | sed -e 's/\.gcda//g' -e 's/\.gcno//g' -e 's/\.da//g' | $(EGREP) $(LCOV_INCLUDE) | uniq | while read x; do \ -@files=`find . -name \*.gcda -o -name \*.gcno -o -name \*.da -o -name \*.h | sed -e 's/^\.\///' | sed -e 's/\.gcda//g' -e 's/\.gcno//g' -e 's/\.da//g' | $(EGREP) $(LCOV_INCLUDE) | uniq` ;\
for x in $$files; do \
echo -n . ;\ echo -n . ;\
y=`echo $$x | sed -e 's!\.libs/!!'`; \ y=`echo $$x | sed -e 's!\.libs/!!'`; \
dir=lcov_data/`dirname $$x`; \ dir=lcov_data/`dirname $$x`; \
Expand Down

0 comments on commit 0cb2606

Please sign in to comment.