Openembedded Core Discussions
 help / color / mirror / Atom feed
* [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

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