* [PATCH] icu: fix configure error
@ 2013-08-05 9:39 Bian Naimeng
2013-08-05 17:39 ` Saul Wold
0 siblings, 1 reply; 3+ messages in thread
From: Bian Naimeng @ 2013-08-05 9:39 UTC (permalink / raw)
To: openembedded-core
If we don't create ${STAGING_ICU_DIR_NATIVE} before doing
do_configure for cross target, the following will be caught.
|configure: error: No such directory ${cross_buildroot} supplied as
| the argument to --with-cross-build. Use an absolute path.
|Configure failed. The contents of all config.log files follows to
| aid debugging
|ERROR: oe_runconf failed
Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
---
meta/recipes-support/icu/icu.inc | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/meta/recipes-support/icu/icu.inc b/meta/recipes-support/icu/icu.inc
index e3944cd..3987e42 100644
--- a/meta/recipes-support/icu/icu.inc
+++ b/meta/recipes-support/icu/icu.inc
@@ -27,6 +27,7 @@ EXTRA_OECONF_class-native = ""
# http://bugs.icu-project.org/trac/ticket/9790
do_configure_prepend() {
[ -f ${S}/acinclude.m4 ] || cp ${S}/aclocal.m4 ${S}/acinclude.m4
+ [ -d ${STAGING_ICU_DIR_NATIVE} ] || mkdir -p ${STAGING_ICU_DIR_NATIVE}
}
do_install_append_class-native() {
--
1.7.7
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] icu: fix configure error
2013-08-05 9:39 [PATCH] icu: fix configure error Bian Naimeng
@ 2013-08-05 17:39 ` Saul Wold
2013-08-06 9:40 ` Bian Naimeng
0 siblings, 1 reply; 3+ messages in thread
From: Saul Wold @ 2013-08-05 17:39 UTC (permalink / raw)
To: Bian Naimeng; +Cc: openembedded-core
On 08/05/2013 02:39 AM, Bian Naimeng wrote:
> If we don't create ${STAGING_ICU_DIR_NATIVE} before doing
> do_configure for cross target, the following will be caught.
>
> |configure: error: No such directory ${cross_buildroot} supplied as
> | the argument to --with-cross-build. Use an absolute path.
> |Configure failed. The contents of all config.log files follows to
> | aid debugging
> |ERROR: oe_runconf failed
>
Is this really needed? Which ICU is failing, the target or -native
version? The target version depends on the -native version which should
have created this directory first.
What are the steps to reproduce this?
Sau!
> Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
>
> ---
> meta/recipes-support/icu/icu.inc | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/meta/recipes-support/icu/icu.inc b/meta/recipes-support/icu/icu.inc
> index e3944cd..3987e42 100644
> --- a/meta/recipes-support/icu/icu.inc
> +++ b/meta/recipes-support/icu/icu.inc
> @@ -27,6 +27,7 @@ EXTRA_OECONF_class-native = ""
> # http://bugs.icu-project.org/trac/ticket/9790
> do_configure_prepend() {
> [ -f ${S}/acinclude.m4 ] || cp ${S}/aclocal.m4 ${S}/acinclude.m4
> + [ -d ${STAGING_ICU_DIR_NATIVE} ] || mkdir -p ${STAGING_ICU_DIR_NATIVE}
> }
>
> do_install_append_class-native() {
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] icu: fix configure error
2013-08-05 17:39 ` Saul Wold
@ 2013-08-06 9:40 ` Bian Naimeng
0 siblings, 0 replies; 3+ messages in thread
From: Bian Naimeng @ 2013-08-06 9:40 UTC (permalink / raw)
To: Saul Wold; +Cc: openembedded-core
said the following on 2013-8-6 1:39:, Saul Wold wrote:
> On 08/05/2013 02:39 AM, Bian Naimeng wrote:
>> If we don't create ${STAGING_ICU_DIR_NATIVE} before doing
>> do_configure for cross target, the following will be caught.
>>
>> |configure: error: No such directory ${cross_buildroot} supplied as
>> | the argument to --with-cross-build. Use an absolute path.
>> |Configure failed. The contents of all config.log files follows to
>> | aid debugging
>> |ERROR: oe_runconf failed
>>
> Is this really needed? Which ICU is failing, the target or -native version? The target version depends on the -native version which should have created this directory first.
>
We don't need it almost.
As you said, the native version will create this directory first.
> What are the steps to reproduce this?
It occurs in my strange case.
My icu-native is different version from icu.
In my opinion, it's better to remove this dependence.
Thanks
Bian
>
> Sau!
>
>> Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com>
>>
>> ---
>> meta/recipes-support/icu/icu.inc | 1 +
>> 1 files changed, 1 insertions(+), 0 deletions(-)
>>
>> diff --git a/meta/recipes-support/icu/icu.inc b/meta/recipes-support/icu/icu.inc
>> index e3944cd..3987e42 100644
>> --- a/meta/recipes-support/icu/icu.inc
>> +++ b/meta/recipes-support/icu/icu.inc
>> @@ -27,6 +27,7 @@ EXTRA_OECONF_class-native = ""
>> # http://bugs.icu-project.org/trac/ticket/9790
>> do_configure_prepend() {
>> [ -f ${S}/acinclude.m4 ] || cp ${S}/aclocal.m4 ${S}/acinclude.m4
>> + [ -d ${STAGING_ICU_DIR_NATIVE} ] || mkdir -p ${STAGING_ICU_DIR_NATIVE}
>> }
>>
>> do_install_append_class-native() {
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-08-06 9:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-08-05 9:39 [PATCH] icu: fix configure error Bian Naimeng
2013-08-05 17:39 ` Saul Wold
2013-08-06 9:40 ` Bian Naimeng
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox