summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJackie Huang <jackie.huang@windriver.com>2018-02-06 21:36:59 -0800
committerJia Zhang <zhang.jia@linux.alibaba.com>2018-02-07 14:56:59 +0800
commitcfb63e60d702e47ae752bf724b89fe26f1c72a68 (patch)
tree419f9fba4e6156a2fdfb2af3a3bd1c4b5d30ad9c
parent0c4d9a8268561154b784bca595b65589f1f259d1 (diff)
downloadmeta-secure-core-cfb63e60d702e47ae752bf724b89fe26f1c72a68.tar.gz
efitools: use oe.utils.str_filter_out
oe_filter_out has been removed from oe-core so use the replacement function oe.utils.str_filter_out. Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
-rw-r--r--meta-efi-secure-boot/recipes-bsp/efitools/efitools.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-efi-secure-boot/recipes-bsp/efitools/efitools.inc b/meta-efi-secure-boot/recipes-bsp/efitools/efitools.inc
index 21eb9f6..97a489f 100644
--- a/meta-efi-secure-boot/recipes-bsp/efitools/efitools.inc
+++ b/meta-efi-secure-boot/recipes-bsp/efitools/efitools.inc
@@ -50,8 +50,8 @@ EXTRA_OEMAKE_append_x86 += " ARCH=ia32"
50EXTRA_OEMAKE_append_x86-64 += " ARCH=x86_64" 50EXTRA_OEMAKE_append_x86-64 += " ARCH=x86_64"
51 51
52# LDFLAGS is used by LD not CC, so remove '-Wl,' 52# LDFLAGS is used by LD not CC, so remove '-Wl,'
53LDFLAGS := "${@oe_filter_out('-Wl,', '${LDFLAGS}', d)}" 53LDFLAGS := "${@oe.utils.str_filter_out('-Wl,', '${LDFLAGS}', d)}"
54BUILD_LDFLAGS := "${@oe_filter_out('-Wl,', '${BUILD_LDFLAGS}', d)}" 54BUILD_LDFLAGS := "${@oe.utils.str_filter_out('-Wl,', '${BUILD_LDFLAGS}', d)}"
55 55
56EFI_BOOT_PATH = "/boot/efi/EFI/BOOT" 56EFI_BOOT_PATH = "/boot/efi/EFI/BOOT"
57 57