[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

find usage of gcov-clean target in Makefile.in

From: Yasuhito FUTATSUKI <futatuki_at_poem.co.jp>
Date: Fri, 29 Nov 2019 00:15:48 +0900

Hi, while I do 'make distclean', I find odd `find' usage.

In Makefile.in:
> gcov-clean:
> rm -f gcov-lcov.dat gcov-lcov.log gcov-genhtml.log
> rm -rf gcov-report
> find . -name "*.gcda" -o -name "*.gcno" -exec rm -f -- {} \;

Is it intended below ?
     find . \( -name "*.gcda" -o -name "*.gcno" \) -exec rm -f -- {}\;

I also want to insert `-name ".svn" -prune -or ' to avoid searching
files into metadata directory in working copy, for I can find it
because it takes long time to execute gov-clean target on my jalopy
computer :)

Cheers,

-- 
Yasuhito FUTATSUKI <futatuki_at_yf.bsdclub.org>/<futatuki_at_poem.co.jp>
Received on 2019-11-28 16:16:51 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.