summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe/package_manager/deb/sdk.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2020-07-30 23:01:06 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-08-01 19:57:49 +0100
commitb70c39767c98231176acf275953f16dd3a8ede38 (patch)
tree5271c8728a3dcc90eeb6e24560760f97639fda5c /meta/lib/oe/package_manager/deb/sdk.py
parentdca94d9aa4672cf6beccbaf6b9a09ad83847c59e (diff)
downloadpoky-b70c39767c98231176acf275953f16dd3a8ede38.tar.gz
lib/package_manager: Fix missing imports
The package_manager code rearranging had some issues with module imports that were now missing. Fix all the ones I could spot from quick inspection. (From OE-Core rev: 287eccd7af7d97604ca68d456c23655fd1b6c40b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oe/package_manager/deb/sdk.py')
-rw-r--r--meta/lib/oe/package_manager/deb/sdk.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/lib/oe/package_manager/deb/sdk.py b/meta/lib/oe/package_manager/deb/sdk.py
index 3876f9b683..b25eb70b00 100644
--- a/meta/lib/oe/package_manager/deb/sdk.py
+++ b/meta/lib/oe/package_manager/deb/sdk.py
@@ -2,11 +2,12 @@
2# SPDX-License-Identifier: GPL-2.0-only 2# SPDX-License-Identifier: GPL-2.0-only
3# 3#
4 4
5import glob
6import shutil
5from oe.utils import execute_pre_post_process 7from oe.utils import execute_pre_post_process
6from oe.sdk import Sdk 8from oe.sdk import Sdk
7from oe.manifest import Manifest 9from oe.manifest import Manifest
8from oe.package_manager.deb import DpkgPM 10from oe.package_manager.deb import DpkgPM
9import shutil
10 11
11class DpkgSdk(Sdk): 12class DpkgSdk(Sdk):
12 def __init__(self, d, manifest_dir=None): 13 def __init__(self, d, manifest_dir=None):