Re: [OE-core] [PATCH] perl: Fix nativesdk install path

2012-09-28 Thread Richard Purdie
On Thu, 2012-09-27 at 15:10 -0500, Mark Hatle wrote: > I had to revert this patch. With it enabled, if I enable multilibs and build > for x86_64 (so my libdir == /usr/lib64), perl no longer finishes do_install(). > > When I revert it fixes that issue, but of course then the nativesdk is broken

Re: [OE-core] [PATCH] perl: Fix nativesdk install path

2012-09-27 Thread Mark Hatle
I had to revert this patch. With it enabled, if I enable multilibs and build for x86_64 (so my libdir == /usr/lib64), perl no longer finishes do_install(). When I revert it fixes that issue, but of course then the nativesdk is broken again. --Mark On 9/27/12 10:32 AM, Saul Wold wrote: On 09

Re: [OE-core] [PATCH] perl: Fix nativesdk install path

2012-09-27 Thread Saul Wold
On 09/27/2012 05:20 AM, Christian Glindkamp wrote: Commit 38234f2e276356b1d77a87ceabc486107e336d19 tried to fix the sed expressions by anchoring the left side of the search regexp to prevent $prefix$prefix type expression in the perl config. For nativesdk this is not enough. Adding anchors on bot

[OE-core] [PATCH] perl: Fix nativesdk install path

2012-09-27 Thread Christian Glindkamp
Commit 38234f2e276356b1d77a87ceabc486107e336d19 tried to fix the sed expressions by anchoring the left side of the search regexp to prevent $prefix$prefix type expression in the perl config. For nativesdk this is not enough. Adding anchors on both side fixes this. Signed-off-by: Christian Glindkam