diff options
author | Marko, Peter <peter.marko@siemens.com> | 2017-08-23 14:16:29 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-23 13:48:50 +0100 |
commit | 859e78cbc719c39cdbbfa77fbaaaa715ed39d864 (patch) | |
tree | da1a4a1fe13db99064319abd9a4aa5f503356565 | |
parent | 58057d8749a827da46db23e501684cf8eea2842d (diff) | |
download | poky-859e78cbc719c39cdbbfa77fbaaaa715ed39d864.tar.gz |
staging: add missing import errno to staging_populate_sysroot_dir
Fixes error "Exception: NameError: name 'errno' is not defined"
during build-sysroots.bb:do_build_target_sysroot
(From OE-Core rev: b1e482ae20b9c714f4089d4da6470d041242e441)
Signed-off-by: Marko, Peter <peter.marko@siemens.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/staging.bbclass | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/classes/staging.bbclass b/meta/classes/staging.bbclass index 162c8e9ce4..9d3d2ad9dd 100644 --- a/meta/classes/staging.bbclass +++ b/meta/classes/staging.bbclass | |||
@@ -177,6 +177,7 @@ def staging_processfixme(fixme, target, recipesysroot, recipesysrootnative, d): | |||
177 | def staging_populate_sysroot_dir(targetsysroot, nativesysroot, native, d): | 177 | def staging_populate_sysroot_dir(targetsysroot, nativesysroot, native, d): |
178 | import glob | 178 | import glob |
179 | import subprocess | 179 | import subprocess |
180 | import errno | ||
180 | 181 | ||
181 | fixme = [] | 182 | fixme = [] |
182 | postinsts = [] | 183 | postinsts = [] |