From: Martin Willi Date: Tue, 11 Jun 2013 15:27:40 +0000 (+0200) Subject: Limit cleanup of .gc{no,da} files to src and scripts subfolders X-Git-Tag: 5.1.0dr1~97^2~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5b63a3e5c5004ab6252e2669330ace0402d239a;p=thirdparty%2Fstrongswan.git Limit cleanup of .gc{no,da} files to src and scripts subfolders Other folders in the build tree might not be related to the strongSwan tree, or are not even accessible. --- diff --git a/Makefile.am b/Makefile.am index d9bae5f205..3a905f2c01 100644 --- a/Makefile.am +++ b/Makefile.am @@ -39,7 +39,7 @@ apidoc : Doxyfile cov-reset-common: @rm -rf $(top_builddir)/coverage - @find $(top_builddir) -name "*.gcda" -delete + @find $(top_builddir)/{src,scripts} -name "*.gcda" -delete if COVERAGE cov-reset: cov-reset-common @@ -67,7 +67,7 @@ coverage: endif clean-local: cov-reset-common - @find $(top_builddir) -name "*.gcno" -delete + @find $(top_builddir)/{src,scripts} -name "*.gcno" -delete @rm -rf apidoc .PHONY: cov-reset-common cov-reset cov-report coverage \ No newline at end of file