diff options
author | Jonathan Liu <net147@gmail.com> | 2016-08-07 18:34:28 +1000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-08-10 10:46:28 +0100 |
commit | 88a3d7629c1489bd4a8f028db1df80db099b388c (patch) | |
tree | efe3cec7366b67c97abb6da7562bc99a065b358c /meta/classes/syslinux.bbclass | |
parent | 30ab044dacf2b8ece625c0735b620b2c47b8cf40 (diff) | |
download | poky-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/syslinux.bbclass')
-rw-r--r-- | meta/classes/syslinux.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/syslinux.bbclass b/meta/classes/syslinux.bbclass index 1d310dddf2..fa3e3ec8a4 100644 --- a/meta/classes/syslinux.bbclass +++ b/meta/classes/syslinux.bbclass | |||
@@ -105,7 +105,7 @@ python build_syslinux_cfg () { | |||
105 | try: | 105 | try: |
106 | cfgfile = open(cfile, 'w') | 106 | cfgfile = open(cfile, 'w') |
107 | except OSError: | 107 | except OSError: |
108 | raise bb.build.funcFailed('Unable to open %s' % (cfile)) | 108 | raise bb.build.FuncFailed('Unable to open %s' % (cfile)) |
109 | 109 | ||
110 | cfgfile.write('# Automatically created by OE\n') | 110 | cfgfile.write('# Automatically created by OE\n') |
111 | 111 | ||