After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 724091 - find without path is not allowed on FreeBSD
find without path is not allowed on FreeBSD
Status: RESOLVED FIXED
Product: cheese
Classification: Applications
Component: general
git master
Other FreeBSD
: Normal normal
: ---
Assigned To: Cheese Maintainer(s)
Cheese Maintainer(s)
Depends on:
Blocks:
 
 
Reported: 2014-02-11 03:53 UTC by Ting-Wei Lan
Modified: 2014-02-11 09:16 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Fix "make clean" problem on FreeBSD (994 bytes, patch)
2014-02-11 03:53 UTC, Ting-Wei Lan
committed Details | Review

Description Ting-Wei Lan 2014-02-11 03:53:50 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 1 David King 2014-02-11 09:16:10 UTC
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.