diff options
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/rootfs.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index c51e76ddfc..28642abbd9 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -561,6 +561,9 @@ class DpkgOpkgRootfs(Rootfs): | |||
561 | return pkg_list | 561 | return pkg_list |
562 | 562 | ||
563 | def _save_postinsts_common(self, dst_postinst_dir, src_postinst_dir): | 563 | def _save_postinsts_common(self, dst_postinst_dir, src_postinst_dir): |
564 | if bb.utils.contains("IMAGE_FEATURES", "package-management", | ||
565 | True, False, self.d): | ||
566 | return | ||
564 | num = 0 | 567 | num = 0 |
565 | for p in self._get_delayed_postinsts(): | 568 | for p in self._get_delayed_postinsts(): |
566 | bb.utils.mkdirhier(dst_postinst_dir) | 569 | bb.utils.mkdirhier(dst_postinst_dir) |