Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [PATCH] acl: fix build problems with rpath on older libtool
@ 2011-02-18 11:32 Eric Bénard
  2011-02-18 14:28 ` Tom Rini
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Bénard @ 2011-02-18 11:32 UTC (permalink / raw)
  To: openembedded-devel

* bump INC_PR

Signed-off-by: Eric Bénard <eric@eukrea.com>
---
 recipes/udev/acl_2.2.49.bb |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/recipes/udev/acl_2.2.49.bb b/recipes/udev/acl_2.2.49.bb
index 5a37c57..20f94db 100644
--- a/recipes/udev/acl_2.2.49.bb
+++ b/recipes/udev/acl_2.2.49.bb
@@ -1,7 +1,7 @@
 DESCRIPTION = "Commands for Manipulating POSIX Access Control Lists"
 LICENSE = "GPLv2"
 
-PR = "r3"
+PR = "r4"
 
 DEPENDS = "attr"
 
@@ -20,6 +20,9 @@ EXTRA_OECONF = " --enable-gettext=yes \
 do_configure_append() {
     # gettext hack
     echo "#define _(str) str" >> ${S}/include/config.h
+    # use same fix as libiconv
+    sed -i -e  s/^hardcode_libdir_flag_spec/#hardcode_libdir_flag_spec/ \
+           -e s/^runpath_var/#runpath_var/ ${S}/*-libtool
 }
 
 do_configure_prepend() {
-- 
1.7.0.4




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] acl: fix build problems with rpath on older libtool
  2011-02-18 11:32 [PATCH] acl: fix build problems with rpath on older libtool Eric Bénard
@ 2011-02-18 14:28 ` Tom Rini
  2011-02-18 14:37   ` Eric Bénard
  0 siblings, 1 reply; 3+ messages in thread
From: Tom Rini @ 2011-02-18 14:28 UTC (permalink / raw)
  To: openembedded-devel

On 02/18/2011 04:32 AM, Eric Bénard wrote:
> * bump INC_PR
>
> Signed-off-by: Eric Bénard<eric@eukrea.com>
> ---
>   recipes/udev/acl_2.2.49.bb |    5 ++++-
>   1 files changed, 4 insertions(+), 1 deletions(-)
>
> diff --git a/recipes/udev/acl_2.2.49.bb b/recipes/udev/acl_2.2.49.bb
> index 5a37c57..20f94db 100644
> --- a/recipes/udev/acl_2.2.49.bb
> +++ b/recipes/udev/acl_2.2.49.bb
> @@ -1,7 +1,7 @@
>   DESCRIPTION = "Commands for Manipulating POSIX Access Control Lists"
>   LICENSE = "GPLv2"
>
> -PR = "r3"
> +PR = "r4"
>
>   DEPENDS = "attr"
>
> @@ -20,6 +20,9 @@ EXTRA_OECONF = " --enable-gettext=yes \
>   do_configure_append() {
>       # gettext hack
>       echo "#define _(str) str">>  ${S}/include/config.h
> +    # use same fix as libiconv
> +    sed -i -e  s/^hardcode_libdir_flag_spec/#hardcode_libdir_flag_spec/ \
> +           -e s/^runpath_var/#runpath_var/ ${S}/*-libtool
>   }
>
>   do_configure_prepend() {

I've actually got something similar, but based on how poky fixed this 
queued up, and while I was in there I cleaned up the paths a bit too. 
But you got it posted first, so do you have a preference?

-- 
Tom Rini
Mentor Graphics Corporation



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] acl: fix build problems with rpath on older libtool
  2011-02-18 14:28 ` Tom Rini
@ 2011-02-18 14:37   ` Eric Bénard
  0 siblings, 0 replies; 3+ messages in thread
From: Eric Bénard @ 2011-02-18 14:37 UTC (permalink / raw)
  To: openembedded-devel

Hi Tom,

On 18/02/2011 15:28, Tom Rini wrote:
> On 02/18/2011 04:32 AM, Eric Bénard wrote:
>> * bump INC_PR
>>
>> Signed-off-by: Eric Bénard<eric@eukrea.com>
>> ---
>> recipes/udev/acl_2.2.49.bb | 5 ++++-
>> 1 files changed, 4 insertions(+), 1 deletions(-)
>>
>> diff --git a/recipes/udev/acl_2.2.49.bb b/recipes/udev/acl_2.2.49.bb
>> index 5a37c57..20f94db 100644
>> --- a/recipes/udev/acl_2.2.49.bb
>> +++ b/recipes/udev/acl_2.2.49.bb
>> @@ -1,7 +1,7 @@
>> DESCRIPTION = "Commands for Manipulating POSIX Access Control Lists"
>> LICENSE = "GPLv2"
>>
>> -PR = "r3"
>> +PR = "r4"
>>
>> DEPENDS = "attr"
>>
>> @@ -20,6 +20,9 @@ EXTRA_OECONF = " --enable-gettext=yes \
>> do_configure_append() {
>> # gettext hack
>> echo "#define _(str) str">> ${S}/include/config.h
>> + # use same fix as libiconv
>> + sed -i -e s/^hardcode_libdir_flag_spec/#hardcode_libdir_flag_spec/ \
>> + -e s/^runpath_var/#runpath_var/ ${S}/*-libtool
>> }
>>
>> do_configure_prepend() {
>
> I've actually got something similar, but based on how poky fixed this queued
> up, and while I was in there I cleaned up the paths a bit too. But you got it
> posted first, so do you have a preference?
>
no problem, just push your patch with cleaned paths.

Eric



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-02-18 14:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-18 11:32 [PATCH] acl: fix build problems with rpath on older libtool Eric Bénard
2011-02-18 14:28 ` Tom Rini
2011-02-18 14:37   ` Eric Bénard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox