summaryrefslogtreecommitdiff
path: root/Makefile.am
diff options
context:
space:
mode:
authorStefan Schmidt <stefan@osg.samsung.com>2015-09-04 14:57:50 +0200
committerStefan Schmidt <stefan@osg.samsung.com>2015-09-04 14:59:08 +0200
commit3ca5cc094a6cac9137a42fcc54e44bedc1e2e311 (patch)
treedf4bbe02c6c7125434913b76e620f62aaa3c0091 /Makefile.am
parentf5c96735978257929dc38e0145732d4ee963483b (diff)
downloadelementary-3ca5cc094a6cac9137a42fcc54e44bedc1e2e311.tar.gz
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.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 3cb5d0ac2..dc3def2cc 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -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