From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from 64.mail-out.ovh.net ([91.121.185.65]) by linuxtogo.org with smtp (Exim 4.72) (envelope-from ) id 1PqRTV-0005D5-Fd for openembedded-devel@lists.openembedded.org; Fri, 18 Feb 2011 15:38:25 +0100 Received: (qmail 8296 invoked by uid 503); 18 Feb 2011 14:14:54 -0000 Received: from b6.ovh.net (HELO mail240.ha.ovh.net) (213.186.33.56) by 64.mail-out.ovh.net with SMTP; 18 Feb 2011 14:14:54 -0000 Received: from b0.ovh.net (HELO queueout) (213.186.33.50) by b0.ovh.net with SMTP; 18 Feb 2011 16:37:11 +0200 Received: from pac33-2-82-240-38-71.fbx.proxad.net (HELO ?192.168.1.15?) (ebenard%eukrea.com@82.240.38.71) by ns0.ovh.net with SMTP; 18 Feb 2011 16:37:11 +0200 Message-ID: <4D5E8416.2060908@eukrea.com> Date: Fri, 18 Feb 2011 15:37:10 +0100 From: =?UTF-8?B?RXJpYyBCw6luYXJk?= User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.13) Gecko/20101209 Fedora/3.1.7-0.35.b3pre.fc14 Lightning/1.0b3pre Thunderbird/3.1.7 MIME-Version: 1.0 To: openembedded-devel@lists.openembedded.org References: <1298028729-10564-1-git-send-email-eric@eukrea.com> <4D5E81F9.5060605@mentor.com> In-Reply-To: <4D5E81F9.5060605@mentor.com> X-Ovh-Tracer-Id: 9518076338198785353 X-Ovh-Remote: 82.240.38.71 (pac33-2-82-240-38-71.fbx.proxad.net) X-Ovh-Local: 213.186.33.20 (ns0.ovh.net) X-Spam-Check: DONE|U 0.5/N Subject: Re: [PATCH] acl: fix build problems with rpath on older libtool X-BeenThere: openembedded-devel@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list Reply-To: openembedded-devel@lists.openembedded.org List-Id: Using the OpenEmbedded metadata to build Distributions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Feb 2011 14:38:25 -0000 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit 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 >> --- >> 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