build: ensure we do not fail clean if check-results.xml does not exist

If we did not run make check this file would not exist and a clean would
fail over it. Using -f ignores this case.
This commit is contained in:
Stefan Schmidt 2015-09-04 14:57:50 +02:00
parent a501148a2f
commit 52755c7874
1 changed files with 1 additions and 1 deletions

View File

@ -156,5 +156,5 @@ if ELEMENTARY_ENABLE_COVERAGE
endif
clean-local:
rm src/tests/check-results.xml
rm -f src/tests/check-results.xml
endif