summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTing-Wei Lan <lantw44@gmail.com>2014-02-10 20:34:36 +0800
committerTing-Wei Lan <lantw44@gmail.com>2014-02-10 20:34:36 +0800
commitfe83b2425710187a259f8c80c36556273e38569b (patch)
tree2a02c44eb5fb7256f1f40788d19ca1635e158278
parent1b22c186775c11cd061757745359375b7c340f06 (diff)
downloaddconf-fe83b2425710187a259f8c80c36556273e38569b.tar.gz
Fix "make clean" problem on FreeBSD
Running find without path is not allowed on FreeBSD. https://bugzilla.gnome.org/show_bug.cgi?id=723998
-rw-r--r--Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am
index e40b6d8..c047e01 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -24,9 +24,9 @@ lcov: lcov-clean
@echo
gcno-clean:
- -find -name '*.gcno' -delete
+ -find . -name '*.gcno' -delete
lcov-clean:
-lcov --directory $(top_builddir) -z
- find -name '*.gcda' -delete
+ find . -name '*.gcda' -delete
rm -rf lcov-html dconf-lcov.info