diff options
-rw-r--r-- | meta/lib/oe/rootfs.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/lib/oe/rootfs.py b/meta/lib/oe/rootfs.py index 67ae281e47..ddda552263 100644 --- a/meta/lib/oe/rootfs.py +++ b/meta/lib/oe/rootfs.py | |||
@@ -144,6 +144,10 @@ class Rootfs(object, metaclass=ABCMeta): | |||
144 | bb.note(" Install complementary '*-dbg' packages...") | 144 | bb.note(" Install complementary '*-dbg' packages...") |
145 | self.pm.install_complementary('*-dbg') | 145 | self.pm.install_complementary('*-dbg') |
146 | 146 | ||
147 | if self.d.getVar('PACKAGE_DEBUG_SPLIT_STYLE') == 'debug-with-srcpkg': | ||
148 | bb.note(" Install complementary '*-src' packages...") | ||
149 | self.pm.install_complementary('*-src') | ||
150 | |||
147 | bb.note(" Rename debug rootfs...") | 151 | bb.note(" Rename debug rootfs...") |
148 | try: | 152 | try: |
149 | shutil.rmtree(self.image_rootfs + '-dbg') | 153 | shutil.rmtree(self.image_rootfs + '-dbg') |