GNOME Bugzilla – Bug 724091
find without path is not allowed on FreeBSD
Last modified: 2014-02-11 09:16:17 UTC
Created attachment 268749 [details] [review] Fix "make clean" problem on FreeBSD Commands such as "find -name '*.gcda' -exec rm -f {} +" should be changed to "find . -name '*.gcda' -exec rm -f {} +" because FreeBSD find requires at least a path. POSIX find requires it, too.
Comment on attachment 268749 [details] [review] Fix "make clean" problem on FreeBSD Thanks for the patch, I pushed it to master as commit 29340e35939c07fafd803648b504e95e143038c4. You might want to use "git --format-patch" to create the patch in future, as it is easier to maintain the author information.