summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/lib/oe/package_manager/ipk/manifest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/package_manager/ipk/manifest.py b/meta/lib/oe/package_manager/ipk/manifest.py
index ae451c5c70..22669f97c0 100644
--- a/meta/lib/oe/package_manager/ipk/manifest.py
+++ b/meta/lib/oe/package_manager/ipk/manifest.py
@@ -62,7 +62,7 @@ class PkgManifest(Manifest):
62 if len(pkgs_to_install) == 0: 62 if len(pkgs_to_install) == 0:
63 return 63 return
64 64
65 output = pm.dummy_install(pkgs_to_install).decode('utf-8') 65 output = pm.dummy_install(pkgs_to_install)
66 66
67 with open(self.full_manifest, 'w+') as manifest: 67 with open(self.full_manifest, 'w+') as manifest:
68 pkg_re = re.compile('^Installing ([^ ]+) [^ ].*') 68 pkg_re = re.compile('^Installing ([^ ]+) [^ ].*')