coverage: Apparently not all shells can expand {src,scripts}

One example is ash.
This commit is contained in:
Tobias Brunner 2014-02-19 12:41:56 +01:00
parent 435aed8287
commit 6122bfd2eb
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ apidoc : Doxyfile
cov-reset-common: cov-reset-common:
@rm -rf $(top_builddir)/coverage @rm -rf $(top_builddir)/coverage
@find $(top_builddir)/{src,scripts} -name "*.gcda" -delete @find $(top_builddir)/src $(top_builddir)/scripts -name "*.gcda" -delete
if COVERAGE if COVERAGE
cov-reset: cov-reset-common cov-reset: cov-reset-common
@ -72,7 +72,7 @@ coverage:
endif endif
clean-local: cov-reset-common clean-local: cov-reset-common
@find $(top_builddir)/{src,scripts} -name "*.gcno" -delete @find $(top_builddir)/src $(top_builddir)/scripts -name "*.gcno" -delete
@rm -rf apidoc @rm -rf apidoc
.PHONY: cov-reset-common cov-reset cov-report coverage .PHONY: cov-reset-common cov-reset cov-report coverage