diff options
author | Humberto Ibarra <humberto.ibarra.lopez@intel.com> | 2016-06-09 12:07:38 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-12 23:47:19 +0100 |
commit | 7fc6c4581476699243c1e1fa4d7fcee26385b642 (patch) | |
tree | 1ae33f890a57eb97ebc6bdb7ea4d23ea3d679838 | |
parent | dd20de9c3e70628612db1ebab36bf25fa5d80779 (diff) | |
download | poky-7fc6c4581476699243c1e1fa4d7fcee26385b642.tar.gz |
scripts/lib/bsp/kernel.py: python3: use explicit relative imports
Have to convert implicit relative imports to explicit imports since
implicit relative imports are not supported on python3.
[YOCTO #9723]
(From meta-yocto rev: 89cecc603d229768428f3cb68d21235dee80efda)
Signed-off-by: Humberto Ibarra <humberto.ibarra.lopez@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/lib/bsp/kernel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/bsp/kernel.py b/scripts/lib/bsp/kernel.py index 91cc79ca94..32cab3b642 100644 --- a/scripts/lib/bsp/kernel.py +++ b/scripts/lib/bsp/kernel.py | |||
@@ -29,7 +29,7 @@ | |||
29 | import sys | 29 | import sys |
30 | import os | 30 | import os |
31 | import shutil | 31 | import shutil |
32 | from tags import * | 32 | from .tags import * |
33 | import glob | 33 | import glob |
34 | import subprocess | 34 | import subprocess |
35 | from .engine import create_context | 35 | from .engine import create_context |