From e2280b9e12f625b4aa55dba86e68046a55326a8a Mon Sep 17 00:00:00 2001 From: Ming Liu Date: Thu, 26 Jan 2017 14:26:44 +0100 Subject: meta: remove remaining True option to getVar calls This is a complementary fix to commit 7c552996: [ meta: remove True option to getVar calls ] it intended to remove all True option to getVar calls, but there are still some remaining. Search made with the following regex: getVar ?\((.*), True\) (From OE-Core rev: 87d03ffe03d6f01e360bfd51714be96e62506e0a) Signed-off-by: Ming Liu Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- meta/recipes-bsp/gnu-efi/gnu-efi_3.0.4.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/recipes-bsp/gnu-efi') diff --git a/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.4.bb b/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.4.bb index f95029aed4..9edd539b55 100644 --- a/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.4.bb +++ b/meta/recipes-bsp/gnu-efi/gnu-efi_3.0.4.bb @@ -57,7 +57,7 @@ BBCLASSEXTEND = "native" TUNE_CCARGS_remove = "-mfpmath=sse" python () { - ccargs = d.getVar('TUNE_CCARGS', True).split() + ccargs = d.getVar('TUNE_CCARGS').split() if '-mx32' in ccargs: # use x86_64 EFI ABI ccargs.remove('-mx32') -- cgit v1.2.3-54-g00ecf