Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] apr-util: fix the rules.mk with path to sysroot instead of the workdir of apr
@ 2012-08-17  3:11 jackie.huang
  2012-08-17  3:11 ` [PATCH 1/1] " jackie.huang
  2012-08-21 15:33 ` [PATCH 0/1] " Saul Wold
  0 siblings, 2 replies; 5+ messages in thread
From: jackie.huang @ 2012-08-17  3:11 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

The copying for rules.mk was happened in do_configure_prepend, but it will be
replaced by the one generated by configure, in which APR_MKEXPORT points to
the workdir of apr and cause compile filure when the workdir of apr is removed.
So change the copying in _prepend to _append.

[YOCTO #2947]

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
The following changes since commit 24babf9316da50c8a4d2f328c4336cb8cd6cf667:

  classes/chrpath: trigger an error if chrpath fails (2012-08-15 17:51:04 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib jhuang0/bug2947_apr_0817
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/bug2947_apr_0817

Jackie Huang (1):
  apr-util: fix the rules.mk with path to sysroot instead of the
    workdir of apr

 meta/recipes-support/apr/apr-util_1.4.1.bb |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

-- 
1.7.4




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

* [PATCH 1/1] apr-util: fix the rules.mk with path to sysroot instead of the workdir of apr
  2012-08-17  3:11 [PATCH 0/1] apr-util: fix the rules.mk with path to sysroot instead of the workdir of apr jackie.huang
@ 2012-08-17  3:11 ` jackie.huang
  2012-08-17 12:13   ` Martin Jansa
  2012-08-21 15:33 ` [PATCH 0/1] " Saul Wold
  1 sibling, 1 reply; 5+ messages in thread
From: jackie.huang @ 2012-08-17  3:11 UTC (permalink / raw)
  To: openembedded-core

From: Jackie Huang <jackie.huang@windriver.com>

The copying for rules.mk was happened in do_configure_prepend, but it will be
replaced by the one generated by configure, in which APR_MKEXPORT points to
the workdir of apr and cause compile filure when the workdir of apr is removed.
So change the copying in _prepend to _append.

[YOCTO #2947]

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
---
 meta/recipes-support/apr/apr-util_1.4.1.bb |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-support/apr/apr-util_1.4.1.bb b/meta/recipes-support/apr/apr-util_1.4.1.bb
index deb608f..0516bc4 100644
--- a/meta/recipes-support/apr/apr-util_1.4.1.bb
+++ b/meta/recipes-support/apr/apr-util_1.4.1.bb
@@ -32,8 +32,10 @@ inherit autotools lib_package binconfig
 
 OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'"
 
-do_configure_prepend() {
-	cp ${STAGING_DATADIR}/apr/apr_rules.mk ${S}/build/rules.mk
+do_configure_append() {
+	if [ "${PN}" == "${BPN}" ]; then
+		cp ${STAGING_DATADIR}/apr/apr_rules.mk ${S}/build/rules.mk
+	fi
 }
 do_configure_prepend_virtclass-native() {
 	cp ${STAGING_DATADIR_NATIVE}/apr/apr_rules.mk ${S}/build/rules.mk
-- 
1.7.4




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

* Re: [PATCH 1/1] apr-util: fix the rules.mk with path to sysroot instead of the workdir of apr
  2012-08-17  3:11 ` [PATCH 1/1] " jackie.huang
@ 2012-08-17 12:13   ` Martin Jansa
  2012-08-21  3:14     ` jhuang0
  0 siblings, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2012-08-17 12:13 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

[-- Attachment #1: Type: text/plain, Size: 1620 bytes --]

On Fri, Aug 17, 2012 at 11:11:43AM +0800, jackie.huang@windriver.com wrote:
> From: Jackie Huang <jackie.huang@windriver.com>
> 
> The copying for rules.mk was happened in do_configure_prepend, but it will be
> replaced by the one generated by configure, in which APR_MKEXPORT points to
> the workdir of apr and cause compile filure when the workdir of apr is removed.
> So change the copying in _prepend to _append.
> 
> [YOCTO #2947]
> 
> Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
> ---
>  meta/recipes-support/apr/apr-util_1.4.1.bb |    6 ++++--
>  1 files changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/meta/recipes-support/apr/apr-util_1.4.1.bb b/meta/recipes-support/apr/apr-util_1.4.1.bb
> index deb608f..0516bc4 100644
> --- a/meta/recipes-support/apr/apr-util_1.4.1.bb
> +++ b/meta/recipes-support/apr/apr-util_1.4.1.bb
> @@ -32,8 +32,10 @@ inherit autotools lib_package binconfig
>  
>  OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'"
>  
> -do_configure_prepend() {
> -	cp ${STAGING_DATADIR}/apr/apr_rules.mk ${S}/build/rules.mk
> +do_configure_append() {
> +	if [ "${PN}" == "${BPN}" ]; then
> +		cp ${STAGING_DATADIR}/apr/apr_rules.mk ${S}/build/rules.mk
> +	fi
>  }
>  do_configure_prepend_virtclass-native() {
>  	cp ${STAGING_DATADIR_NATIVE}/apr/apr_rules.mk ${S}/build/rules.mk

Why is it different then native case above?

Shouldn't be the same fix prepend/append applied for native case too and
then "${PN}" == "${BPN}" won't be needed?

Cheers,

-- 
Martin 'JaMa' Jansa     jabber: Martin.Jansa@gmail.com

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 205 bytes --]

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

* Re: [PATCH 1/1] apr-util: fix the rules.mk with path to sysroot instead of the workdir of apr
  2012-08-17 12:13   ` Martin Jansa
@ 2012-08-21  3:14     ` jhuang0
  0 siblings, 0 replies; 5+ messages in thread
From: jhuang0 @ 2012-08-21  3:14 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer, Martin Jansa



On 8/17/2012 8:13 PM, Martin Jansa wrote:
> On Fri, Aug 17, 2012 at 11:11:43AM +0800, jackie.huang@windriver.com wrote:
>> From: Jackie Huang <jackie.huang@windriver.com>
>>
>> The copying for rules.mk was happened in do_configure_prepend, but it will be
>> replaced by the one generated by configure, in which APR_MKEXPORT points to
>> the workdir of apr and cause compile filure when the workdir of apr is removed.
>> So change the copying in _prepend to _append.
>>
>> [YOCTO #2947]
>>
>> Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
>> ---
>>   meta/recipes-support/apr/apr-util_1.4.1.bb |    6 ++++--
>>   1 files changed, 4 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta/recipes-support/apr/apr-util_1.4.1.bb b/meta/recipes-support/apr/apr-util_1.4.1.bb
>> index deb608f..0516bc4 100644
>> --- a/meta/recipes-support/apr/apr-util_1.4.1.bb
>> +++ b/meta/recipes-support/apr/apr-util_1.4.1.bb
>> @@ -32,8 +32,10 @@ inherit autotools lib_package binconfig
>>
>>   OE_BINCONFIG_EXTRA_MANGLE = " -e 's:location=source:location=installed:'"
>>
>> -do_configure_prepend() {
>> -	cp ${STAGING_DATADIR}/apr/apr_rules.mk ${S}/build/rules.mk
>> +do_configure_append() {
>> +	if [ "${PN}" == "${BPN}" ]; then
>> +		cp ${STAGING_DATADIR}/apr/apr_rules.mk ${S}/build/rules.mk
>> +	fi
>>   }
>>   do_configure_prepend_virtclass-native() {
>>   	cp ${STAGING_DATADIR_NATIVE}/apr/apr_rules.mk ${S}/build/rules.mk
>
> Why is it different then native case above?
>

The bug didn't happen in native case since the related paths in rules.mk 
generated by configure for apr-util-native were pointed to the correct 
dirs in sysroot, so this fix is only applied for BPN.

And I checked that what makes this difference is the different 
'location' in apr-1-config of BPN and native one:

  $ diff intel-atom/usr/bin/crossscripts/apr-1-config 
x86_64-linux/usr/bin/apr-1-config | tail -n 4
49c49
< location=source
---
 > location=installed


Thanks,
Jackie

> Shouldn't be the same fix prepend/append applied for native case too and
> then "${PN}" == "${BPN}" won't be needed?
>
> Cheers,
>
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>

-- 
Jackie Huang
WIND RIVER | China Development Center
MSN:jackielily@hotmail.com
Tel: +86 8477 8594
Mobile: +86 138 1027 4745



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

* Re: [PATCH 0/1] apr-util: fix the rules.mk with path to sysroot instead of the workdir of apr
  2012-08-17  3:11 [PATCH 0/1] apr-util: fix the rules.mk with path to sysroot instead of the workdir of apr jackie.huang
  2012-08-17  3:11 ` [PATCH 1/1] " jackie.huang
@ 2012-08-21 15:33 ` Saul Wold
  1 sibling, 0 replies; 5+ messages in thread
From: Saul Wold @ 2012-08-21 15:33 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 08/16/2012 08:11 PM, jackie.huang@windriver.com wrote:
> From: Jackie Huang <jackie.huang@windriver.com>
>
> The copying for rules.mk was happened in do_configure_prepend, but it will be
> replaced by the one generated by configure, in which APR_MKEXPORT points to
> the workdir of apr and cause compile filure when the workdir of apr is removed.
> So change the copying in _prepend to _append.
>
> [YOCTO #2947]
>
> Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
> ---
> The following changes since commit 24babf9316da50c8a4d2f328c4336cb8cd6cf667:
>
>    classes/chrpath: trigger an error if chrpath fails (2012-08-15 17:51:04 +0100)
>
> are available in the git repository at:
>    git://git.pokylinux.org/poky-contrib jhuang0/bug2947_apr_0817
>    http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jhuang0/bug2947_apr_0817
>
> Jackie Huang (1):
>    apr-util: fix the rules.mk with path to sysroot instead of the
>      workdir of apr
>
>   meta/recipes-support/apr/apr-util_1.4.1.bb |    6 ++++--
>   1 files changed, 4 insertions(+), 2 deletions(-)
>
Merged into OE-Core

Thanks
	Sau!




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

end of thread, other threads:[~2012-08-21 15:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-17  3:11 [PATCH 0/1] apr-util: fix the rules.mk with path to sysroot instead of the workdir of apr jackie.huang
2012-08-17  3:11 ` [PATCH 1/1] " jackie.huang
2012-08-17 12:13   ` Martin Jansa
2012-08-21  3:14     ` jhuang0
2012-08-21 15:33 ` [PATCH 0/1] " Saul Wold

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