Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 236067 - find statement without path on dev-libs/mpfr-2.3.1_p1
Summary: find statement without path on dev-libs/mpfr-2.3.1_p1
Status: RESOLVED FIXED
Alias: None
Product: Gentoo/Alt
Classification: Unclassified
Component: FreeBSD (show other bugs)
Hardware: All FreeBSD
: High normal
Assignee: Gentoo/BSD Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-08-28 20:53 UTC by Javier Villavicencio (RETIRED)
Modified: 2008-11-28 18:35 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Javier Villavicencio (RETIRED) gentoo-dev 2008-08-28 20:53:32 UTC
bsd find needs the first argument to be the path.

-       find -type f -print0 | xargs -0 touch -r configure
+       find . -type f -print0 | xargs -0 touch -r configure
Comment 1 Alexis Ballier gentoo-dev 2008-10-03 06:14:22 UTC
@toolchain: ping; i'll probably apply the fix soon if you don't mind
Comment 2 SpanKY gentoo-dev 2008-10-26 12:20:12 UTC
really your `find` should be GNU.  barring that sudden bout of common sense, the proposed change is fine.
Comment 3 Alexis Ballier gentoo-dev 2008-11-28 13:20:02 UTC
(In reply to comment #2)
> really your `find` should be GNU.  

that's something i've had on my "to be thought about and discussed" list; this is basically what prevents us to have xulrunner 1.9. However replacing completely bsd find by gnu find isn't an option but installing gnu find as gfind and using a portage wrapper could be an option...

> barring that sudden bout of common sense,
> the proposed change is fine.

and applied eventually.
Comment 4 SpanKY gentoo-dev 2008-11-28 18:35:55 UTC
yes, i was proposing you have portage wrap `find` in the ebuild environment, not replacing /usr/bin/find with GNU find