All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-intel][PATCH] gnu-efi_3.0m.bb: Fix tabs with spaces in python snippet
@ 2012-07-25  7:31 Khem Raj
  2012-07-26 20:26 ` Darren Hart
  0 siblings, 1 reply; 3+ messages in thread
From: Khem Raj @ 2012-07-25  7:31 UTC (permalink / raw)
  To: yocto

This shuts up new bitbake otherwise it warns about this
always

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb b/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb
index 252d49a..a0d5823 100644
--- a/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb
+++ b/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb
@@ -17,11 +17,11 @@ SRC_URI[md5sum] = "d0a21125aee56c0c7291ad260e916cb3"
 S = "${WORKDIR}/gnu-efi-3.0"
 
 def gnu_efi_arch(d):
-	import re
-	tarch = d.getVar("TARGET_ARCH", True)
-	if re.match("i[3456789]86", tarch):
-		return "ia32"
-	return tarch
+    import re
+    tarch = d.getVar("TARGET_ARCH", True)
+    if re.match("i[3456789]86", tarch):
+        return "ia32"
+    return tarch
 
 EXTRA_OEMAKE = "'ARCH=${@gnu_efi_arch(d)}' 'CC=${CC}' 'AS=${AS}' 'LD=${LD}' 'AR=${AR}' \
                 'RANLIB=${RANLIB}' 'OBJCOPY=${OBJCOPY}' \
-- 
1.7.5.4



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

* Re: [meta-intel][PATCH] gnu-efi_3.0m.bb: Fix tabs with spaces in python snippet
  2012-07-25  7:31 [meta-intel][PATCH] gnu-efi_3.0m.bb: Fix tabs with spaces in python snippet Khem Raj
@ 2012-07-26 20:26 ` Darren Hart
  2012-07-27 18:43   ` Darren Hart
  0 siblings, 1 reply; 3+ messages in thread
From: Darren Hart @ 2012-07-26 20:26 UTC (permalink / raw)
  To: Khem Raj; +Cc: yocto

On 07/25/2012 12:31 AM, Khem Raj wrote:
> This shuts up new bitbake otherwise it warns about this
> always
> 
> Signed-off-by: Khem Raj <raj.khem@gmail.com>

Agreed, there is another series pending with this same change. Will get
this merged soon.

Thanks,

Darren

> ---
>  common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb |   10 +++++-----
>  1 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb b/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb
> index 252d49a..a0d5823 100644
> --- a/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb
> +++ b/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb
> @@ -17,11 +17,11 @@ SRC_URI[md5sum] = "d0a21125aee56c0c7291ad260e916cb3"
>  S = "${WORKDIR}/gnu-efi-3.0"
>  
>  def gnu_efi_arch(d):
> -	import re
> -	tarch = d.getVar("TARGET_ARCH", True)
> -	if re.match("i[3456789]86", tarch):
> -		return "ia32"
> -	return tarch
> +    import re
> +    tarch = d.getVar("TARGET_ARCH", True)
> +    if re.match("i[3456789]86", tarch):
> +        return "ia32"
> +    return tarch
>  
>  EXTRA_OEMAKE = "'ARCH=${@gnu_efi_arch(d)}' 'CC=${CC}' 'AS=${AS}' 'LD=${LD}' 'AR=${AR}' \
>                  'RANLIB=${RANLIB}' 'OBJCOPY=${OBJCOPY}' \
> 

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Technical Lead - Linux Kernel


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

* Re: [meta-intel][PATCH] gnu-efi_3.0m.bb: Fix tabs with spaces in python snippet
  2012-07-26 20:26 ` Darren Hart
@ 2012-07-27 18:43   ` Darren Hart
  0 siblings, 0 replies; 3+ messages in thread
From: Darren Hart @ 2012-07-27 18:43 UTC (permalink / raw)
  To: Khem Raj; +Cc: yocto

On 07/26/2012 01:26 PM, Darren Hart wrote:
> On 07/25/2012 12:31 AM, Khem Raj wrote:
>> This shuts up new bitbake otherwise it warns about this
>> always
>>
>> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> 
> Agreed, there is another series pending with this same change. Will get
> this merged soon.

The other series didn't get V2 out today, so I've pulled this version in
to get things working again.

Thanks Khem.

--
Darren

> 
> Thanks,
> 
> Darren
> 
>> ---
>>  common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb |   10 +++++-----
>>  1 files changed, 5 insertions(+), 5 deletions(-)
>>
>> diff --git a/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb b/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb
>> index 252d49a..a0d5823 100644
>> --- a/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb
>> +++ b/common/recipes-bsp/gnu-efi/gnu-efi_3.0m.bb
>> @@ -17,11 +17,11 @@ SRC_URI[md5sum] = "d0a21125aee56c0c7291ad260e916cb3"
>>  S = "${WORKDIR}/gnu-efi-3.0"
>>  
>>  def gnu_efi_arch(d):
>> -	import re
>> -	tarch = d.getVar("TARGET_ARCH", True)
>> -	if re.match("i[3456789]86", tarch):
>> -		return "ia32"
>> -	return tarch
>> +    import re
>> +    tarch = d.getVar("TARGET_ARCH", True)
>> +    if re.match("i[3456789]86", tarch):
>> +        return "ia32"
>> +    return tarch
>>  
>>  EXTRA_OEMAKE = "'ARCH=${@gnu_efi_arch(d)}' 'CC=${CC}' 'AS=${AS}' 'LD=${LD}' 'AR=${AR}' \
>>                  'RANLIB=${RANLIB}' 'OBJCOPY=${OBJCOPY}' \
>>
> 

-- 
Darren Hart
Intel Open Source Technology Center
Yocto Project - Technical Lead - Linux Kernel


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

end of thread, other threads:[~2012-07-27 18:45 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-25  7:31 [meta-intel][PATCH] gnu-efi_3.0m.bb: Fix tabs with spaces in python snippet Khem Raj
2012-07-26 20:26 ` Darren Hart
2012-07-27 18:43   ` Darren Hart

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.