summaryrefslogtreecommitdiffstats
path: root/meta/classes/grub-efi.bbclass
diff options
context:
space:
mode:
authorJonathan Liu <net147@gmail.com>2016-08-07 18:34:28 +1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-08-10 10:46:28 +0100
commit88a3d7629c1489bd4a8f028db1df80db099b388c (patch)
treeefe3cec7366b67c97abb6da7562bc99a065b358c /meta/classes/grub-efi.bbclass
parent30ab044dacf2b8ece625c0735b620b2c47b8cf40 (diff)
downloadpoky-88a3d7629c1489bd4a8f028db1df80db099b388c.tar.gz
meta/classes: fix bb.build.FuncFailed typos
(From OE-Core rev: 6a8b9599945f3f57bd86a205bc107b8490518d29) Signed-off-by: Jonathan Liu <net147@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/grub-efi.bbclass')
-rw-r--r--meta/classes/grub-efi.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/grub-efi.bbclass b/meta/classes/grub-efi.bbclass
index b8c20dd8a6..ae8ee382cd 100644
--- a/meta/classes/grub-efi.bbclass
+++ b/meta/classes/grub-efi.bbclass
@@ -95,7 +95,7 @@ python build_efi_cfg() {
95 try: 95 try:
96 cfgfile = open(cfile, 'w') 96 cfgfile = open(cfile, 'w')
97 except OSError: 97 except OSError:
98 raise bb.build.funcFailed('Unable to open %s' % (cfile)) 98 raise bb.build.FuncFailed('Unable to open %s' % (cfile))
99 99
100 cfgfile.write('# Automatically created by OE\n') 100 cfgfile.write('# Automatically created by OE\n')
101 101