All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gettext.bbclass: Drop target gettext from DEPENDS.
@ 2011-03-07 19:03 Tom Rini
  2011-03-07 19:38 ` Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: Tom Rini @ 2011-03-07 19:03 UTC (permalink / raw)
  To: openembedded-devel

This should be handled via virtual/libintl already.

Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
 classes/gettext.bbclass |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/classes/gettext.bbclass b/classes/gettext.bbclass
index 968531b..6c480b5 100644
--- a/classes/gettext.bbclass
+++ b/classes/gettext.bbclass
@@ -11,7 +11,7 @@ python () {
     gettext_after_parse(d)
 }
 
-DEPENDS_GETTEXT = "gettext gettext-native virtual/libiconv virtual/libintl"
+DEPENDS_GETTEXT = "gettext-native virtual/libiconv virtual/libintl"
 
 DEPENDS =+ "${DEPENDS_GETTEXT}"
 EXTRA_OECONF += "--enable-nls"
-- 
1.7.0.4




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

* Re: [PATCH] gettext.bbclass: Drop target gettext from DEPENDS.
  2011-03-07 19:03 [PATCH] gettext.bbclass: Drop target gettext from DEPENDS Tom Rini
@ 2011-03-07 19:38 ` Khem Raj
  2011-03-08 17:24   ` Tom Rini
  0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2011-03-07 19:38 UTC (permalink / raw)
  To: Tom Rini; +Cc: openembedded-devel

On Mon, Mar 7, 2011 at 11:03 AM, Tom Rini <tom_rini@mentor.com> wrote:
> This should be handled via virtual/libintl already.
>
> Signed-off-by: Tom Rini <tom_rini@mentor.com>

you have to do some uclibc x11 image build from scratch to check for fallouts

Acked-by: Khem Raj <raj.khem@gmail.com>
> ---
>  classes/gettext.bbclass |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/classes/gettext.bbclass b/classes/gettext.bbclass
> index 968531b..6c480b5 100644
> --- a/classes/gettext.bbclass
> +++ b/classes/gettext.bbclass
> @@ -11,7 +11,7 @@ python () {
>     gettext_after_parse(d)
>  }
>
> -DEPENDS_GETTEXT = "gettext gettext-native virtual/libiconv virtual/libintl"
> +DEPENDS_GETTEXT = "gettext-native virtual/libiconv virtual/libintl"
>
>  DEPENDS =+ "${DEPENDS_GETTEXT}"
>  EXTRA_OECONF += "--enable-nls"
> --
> 1.7.0.4
>
>



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

* Re: [PATCH] gettext.bbclass: Drop target gettext from DEPENDS.
  2011-03-07 19:38 ` Khem Raj
@ 2011-03-08 17:24   ` Tom Rini
  2011-03-08 17:53     ` Anand Anand
  0 siblings, 1 reply; 5+ messages in thread
From: Tom Rini @ 2011-03-08 17:24 UTC (permalink / raw)
  To: Khem Raj; +Cc: openembedded-devel

On 03/07/2011 12:38 PM, Khem Raj wrote:
> On Mon, Mar 7, 2011 at 11:03 AM, Tom Rini<tom_rini@mentor.com>  wrote:
>> This should be handled via virtual/libintl already.
>>
>> Signed-off-by: Tom Rini<tom_rini@mentor.com>
>
> you have to do some uclibc x11 image build from scratch to check for fallouts

Did a quick drop back on alsa-utils to get that building (unrelated 
failure, the exp10 thing) and minimal-uclibc+qemuarm+x11-image built, 
pushed.  Thanks!

>
> Acked-by: Khem Raj<raj.khem@gmail.com>
>> ---
>>   classes/gettext.bbclass |    2 +-
>>   1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/classes/gettext.bbclass b/classes/gettext.bbclass
>> index 968531b..6c480b5 100644
>> --- a/classes/gettext.bbclass
>> +++ b/classes/gettext.bbclass
>> @@ -11,7 +11,7 @@ python () {
>>      gettext_after_parse(d)
>>   }
>>
>> -DEPENDS_GETTEXT = "gettext gettext-native virtual/libiconv virtual/libintl"
>> +DEPENDS_GETTEXT = "gettext-native virtual/libiconv virtual/libintl"
>>
>>   DEPENDS =+ "${DEPENDS_GETTEXT}"
>>   EXTRA_OECONF += "--enable-nls"
>> --
>> 1.7.0.4
>>
>>


-- 
Tom Rini
Mentor Graphics Corporation



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

* Re: [PATCH] gettext.bbclass: Drop target gettext from DEPENDS.
  2011-03-08 17:24   ` Tom Rini
@ 2011-03-08 17:53     ` Anand Anand
  2011-03-08 18:29       ` Henning Heinold
  0 siblings, 1 reply; 5+ messages in thread
From: Anand Anand @ 2011-03-08 17:53 UTC (permalink / raw)
  To: openembedded-devel

Hello All,

I needed Help in some Openembedded Stuff.Dont know if this is the correct
way to go ahead.Today I was trying to build two kernels for the same
base-image.I took the original recipe image and made a copy of it and made a
few changes like applying patches etc.I also provided the name of the bb
file from the bb file itself.
I also declared the file through a variable virtual/kernel_xyz but bitbake
wont go ahead with it.It fails in the initial steps itself.but if i use the
variable virtual/kernel itself to point to the file everything works fine
but my original kernel wont compile in this case.

Please suggest how to go about it as I want to get both the kernel
images(one being the original and the other patched version).

Thanks and Regards,
Anand


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

* Re: [PATCH] gettext.bbclass: Drop target gettext from DEPENDS.
  2011-03-08 17:53     ` Anand Anand
@ 2011-03-08 18:29       ` Henning Heinold
  0 siblings, 0 replies; 5+ messages in thread
From: Henning Heinold @ 2011-03-08 18:29 UTC (permalink / raw)
  To: openembedded-devel

Hi,

it's good manner not to hijack a topic.

Bye Henning



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

end of thread, other threads:[~2011-03-08 18:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-07 19:03 [PATCH] gettext.bbclass: Drop target gettext from DEPENDS Tom Rini
2011-03-07 19:38 ` Khem Raj
2011-03-08 17:24   ` Tom Rini
2011-03-08 17:53     ` Anand Anand
2011-03-08 18:29       ` Henning Heinold

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.