From 6a8b9599945f3f57bd86a205bc107b8490518d29 Mon Sep 17 00:00:00 2001 From: Jonathan Liu Date: Sun, 7 Aug 2016 18:34:28 +1000 Subject: meta/classes: fix bb.build.FuncFailed typos Signed-off-by: Jonathan Liu Signed-off-by: Richard Purdie --- meta/classes/gummiboot.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/classes/gummiboot.bbclass') diff --git a/meta/classes/gummiboot.bbclass b/meta/classes/gummiboot.bbclass index 14fa4cfaa0..e6eba17da1 100644 --- a/meta/classes/gummiboot.bbclass +++ b/meta/classes/gummiboot.bbclass @@ -74,7 +74,7 @@ python build_efi_cfg() { try: cfgfile = open(cfile, 'w') except OSError: - raise bb.build.funcFailed('Unable to open %s' % (cfile)) + raise bb.build.FuncFailed('Unable to open %s' % (cfile)) cfgfile.write('# Automatically created by OE\n') cfgfile.write('default %s\n' % (labels.split()[0])) @@ -97,7 +97,7 @@ python build_efi_cfg() { try: entrycfg = open(entryfile, "w") except OSError: - raise bb.build.funcFailed('Unable to open %s' % (entryfile)) + raise bb.build.FuncFailed('Unable to open %s' % (entryfile)) localdata.setVar('OVERRIDES', label + ':' + overrides) bb.data.update_data(localdata) -- cgit 1.2.3-korg