Bug 236067 - find statement without path on dev-libs/mpfr-2.3.1_p1
|
Bug#:
236067
|
Product: Gentoo/Alt
|
Version: unspecified
|
Platform: All
|
|
OS/Version: FreeBSD
|
Status: RESOLVED
|
Severity: normal
|
Priority: P2
|
|
Resolution: FIXED
|
Assigned To: bsd@gentoo.org
|
Reported By: the_paya@gentoo.org
|
|
Component: FreeBSD
|
|
|
URL:
|
|
Summary: find statement without path on dev-libs/mpfr-2.3.1_p1
|
|
Keywords:
|
|
Status Whiteboard:
|
|
Opened: 2008-08-28 20:53 0000
|
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
@toolchain: ping; i'll probably apply the fix soon if you don't mind
really your `find` should be GNU. barring that sudden bout of common sense,
the proposed change is fine.
(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.
yes, i was proposing you have portage wrap `find` in the ebuild environment,
not replacing /usr/bin/find with GNU find