Author: futatuki Date: Thu Dec 5 01:43:14 2019 New Revision: 1870857 URL: http://svn.apache.org/viewvc?rev=1870857&view=rev Log: Fix an operator priority issue on using find(1) utility.
* Makefile.in (gcov-clean:) Modified: subversion/trunk/Makefile.in Modified: subversion/trunk/Makefile.in URL: http://svn.apache.org/viewvc/subversion/trunk/Makefile.in?rev=1870857&r1=1870856&r2=1870857&view=diff ============================================================================== --- subversion/trunk/Makefile.in (original) +++ subversion/trunk/Makefile.in Thu Dec 5 01:43:14 2019 @@ -690,7 +690,7 @@ gcov-reset: 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 -- {} \; + find . \( -name "*.gcda" -o -name "*.gcno" \) -exec rm -f -- {} \; check-clean: gcov-clean if [ -d subversion/tests/cmdline/svn-test-work ]; then \