* [PATCH 1/1] eglibc: Add missing dependency of gettext-native
@ 2013-02-09 17:35 Andrei Gherzan
2013-02-10 0:03 ` Richard Purdie
0 siblings, 1 reply; 3+ messages in thread
From: Andrei Gherzan @ 2013-02-09 17:35 UTC (permalink / raw)
To: openembedded-core
/bin/bash: msgfmt: command not found
| make[2]: *** [be.mo] Error 127
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
---
meta/recipes-core/eglibc/eglibc_2.17.bb | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-core/eglibc/eglibc_2.17.bb b/meta/recipes-core/eglibc/eglibc_2.17.bb
index fb49ac4..03e0ea4 100644
--- a/meta/recipes-core/eglibc/eglibc_2.17.bb
+++ b/meta/recipes-core/eglibc/eglibc_2.17.bb
@@ -1,8 +1,8 @@
require eglibc.inc
-PR = "r3"
+PR = "r4"
-DEPENDS += "gperf-native kconfig-frontends-native"
+DEPENDS += "gperf-native kconfig-frontends-native gettext-native"
SRC_URI = "http://downloads.yoctoproject.org/releases/eglibc/eglibc-${PV}-svnr22064.tar.bz2 \
file://eglibc-svn-arm-lowlevellock-include-tls.patch \
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] eglibc: Add missing dependency of gettext-native
2013-02-09 17:35 [PATCH 1/1] eglibc: Add missing dependency of gettext-native Andrei Gherzan
@ 2013-02-10 0:03 ` Richard Purdie
2013-02-10 9:44 ` Andrei Gherzan
0 siblings, 1 reply; 3+ messages in thread
From: Richard Purdie @ 2013-02-10 0:03 UTC (permalink / raw)
To: Andrei Gherzan; +Cc: openembedded-core
On Sat, 2013-02-09 at 19:35 +0200, Andrei Gherzan wrote:
> /bin/bash: msgfmt: command not found
> | make[2]: *** [be.mo] Error 127
>
> Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
> ---
> meta/recipes-core/eglibc/eglibc_2.17.bb | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-core/eglibc/eglibc_2.17.bb b/meta/recipes-core/eglibc/eglibc_2.17.bb
> index fb49ac4..03e0ea4 100644
> --- a/meta/recipes-core/eglibc/eglibc_2.17.bb
> +++ b/meta/recipes-core/eglibc/eglibc_2.17.bb
> @@ -1,8 +1,8 @@
> require eglibc.inc
>
> -PR = "r3"
> +PR = "r4"
>
> -DEPENDS += "gperf-native kconfig-frontends-native"
> +DEPENDS += "gperf-native kconfig-frontends-native gettext-native"
>
> SRC_URI = "http://downloads.yoctoproject.org/releases/eglibc/eglibc-${PV}-svnr22064.tar.bz2 \
> file://eglibc-svn-arm-lowlevellock-include-tls.patch \
This will seriously hurt build times :(
I'm not saying this is wrong but I would like to understand how we've
managed for as long without it...
Cheers,
Richard
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] eglibc: Add missing dependency of gettext-native
2013-02-10 0:03 ` Richard Purdie
@ 2013-02-10 9:44 ` Andrei Gherzan
0 siblings, 0 replies; 3+ messages in thread
From: Andrei Gherzan @ 2013-02-10 9:44 UTC (permalink / raw)
To: Richard Purdie; +Cc: openembedded
[-- Attachment #1: Type: text/plain, Size: 1462 bytes --]
On Sun, Feb 10, 2013 at 2:03 AM, Richard Purdie <
richard.purdie@linuxfoundation.org> wrote:
> On Sat, 2013-02-09 at 19:35 +0200, Andrei Gherzan wrote:
> > /bin/bash: msgfmt: command not found
> > | make[2]: *** [be.mo] Error 127
> >
> > Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
> > ---
> > meta/recipes-core/eglibc/eglibc_2.17.bb | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/meta/recipes-core/eglibc/eglibc_2.17.bbb/meta/recipes-core/eglibc/
> eglibc_2.17.bb
> > index fb49ac4..03e0ea4 100644
> > --- a/meta/recipes-core/eglibc/eglibc_2.17.bb
> > +++ b/meta/recipes-core/eglibc/eglibc_2.17.bb
> > @@ -1,8 +1,8 @@
> > require eglibc.inc
> >
> > -PR = "r3"
> > +PR = "r4"
> >
> > -DEPENDS += "gperf-native kconfig-frontends-native"
> > +DEPENDS += "gperf-native kconfig-frontends-native gettext-native"
> >
> > SRC_URI = "
> http://downloads.yoctoproject.org/releases/eglibc/eglibc-${PV}-svnr22064.tar.bz2\
> > file://eglibc-svn-arm-lowlevellock-include-tls.patch \
>
> This will seriously hurt build times :(
>
> I'm not saying this is wrong but I would like to understand how we've
> managed for as long without it...
>
Seems like a classic racing issue. This can't be reproduced in a clean
build. It happened to me yesterday, when I updated the layers and baked a
core-image-minimal.
--
*Andrei Gherzan*
m: +40.744.478.414 | f: +40.31.816.28.12
[-- Attachment #2: Type: text/html, Size: 2845 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-02-10 10:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-09 17:35 [PATCH 1/1] eglibc: Add missing dependency of gettext-native Andrei Gherzan
2013-02-10 0:03 ` Richard Purdie
2013-02-10 9:44 ` Andrei Gherzan
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.