From 6122bfd2eb56e5f0b4e41b0c99ee75d605ea911b Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 19 Feb 2014 12:41:56 +0100 Subject: [PATCH] coverage: Apparently not all shells can expand {src,scripts} One example is ash. --- Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index eb083ec79..7e3c72b3b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -42,7 +42,7 @@ apidoc : Doxyfile cov-reset-common: @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 cov-reset: cov-reset-common @@ -72,7 +72,7 @@ coverage: endif 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 .PHONY: cov-reset-common cov-reset cov-report coverage