diff options
author | Khem Raj <raj.khem@gmail.com> | 2012-07-25 07:31:18 (GMT) |
---|---|---|
committer | Darren Hart <dvhart@linux.intel.com> | 2012-07-27 18:41:17 (GMT) |
commit | 7bd163e41f6b861448ab19a13ded4b7c48e16641 (patch) | |
tree | 78f69f899eb1029839794ac764f7ecaa6e6e7f5c /common/recipes-bsp | |
parent | 961f835e4f5dd2d02b34b7fce13316ec7b0bf1c4 (diff) | |
download | meta-intel-7bd163e41f6b861448ab19a13ded4b7c48e16641.tar.gz |
gnu-efi_3.0m.bb: Fix tabs with spaces in python snippet
This shuts up new bitbake otherwise it warns about this
always.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
Diffstat (limited to 'common/recipes-bsp')
-rw-r--r-- | 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" | |||
17 | S = "${WORKDIR}/gnu-efi-3.0" | 17 | S = "${WORKDIR}/gnu-efi-3.0" |
18 | 18 | ||
19 | def gnu_efi_arch(d): | 19 | def gnu_efi_arch(d): |
20 | import re | 20 | import re |
21 | tarch = d.getVar("TARGET_ARCH", True) | 21 | tarch = d.getVar("TARGET_ARCH", True) |
22 | if re.match("i[3456789]86", tarch): | 22 | if re.match("i[3456789]86", tarch): |
23 | return "ia32" | 23 | return "ia32" |
24 | return tarch | 24 | return tarch |
25 | 25 | ||
26 | EXTRA_OEMAKE = "'ARCH=${@gnu_efi_arch(d)}' 'CC=${CC}' 'AS=${AS}' 'LD=${LD}' 'AR=${AR}' \ | 26 | EXTRA_OEMAKE = "'ARCH=${@gnu_efi_arch(d)}' 'CC=${CC}' 'AS=${AS}' 'LD=${LD}' 'AR=${AR}' \ |
27 | 'RANLIB=${RANLIB}' 'OBJCOPY=${OBJCOPY}' \ | 27 | 'RANLIB=${RANLIB}' 'OBJCOPY=${OBJCOPY}' \ |