summaryrefslogtreecommitdiffstats
path: root/meta/lib/oe
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oe')
-rw-r--r--meta/lib/oe/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/package.py b/meta/lib/oe/package.py
index f69bf9c353..9a465eaa09 100644
--- a/meta/lib/oe/package.py
+++ b/meta/lib/oe/package.py
@@ -1239,7 +1239,7 @@ def process_split_and_strip_files(d):
1239 oe.utils.multiprocess_launch(oe.package.runstrip, sfiles, d) 1239 oe.utils.multiprocess_launch(oe.package.runstrip, sfiles, d)
1240 1240
1241 # Build "minidebuginfo" and reinject it back into the stripped binaries 1241 # Build "minidebuginfo" and reinject it back into the stripped binaries
1242 if d.getVar('PACKAGE_MINIDEBUGINFO') == '1': 1242 if bb.utils.contains('DISTRO_FEATURES', 'minidebuginfo', True, False, d):
1243 oe.utils.multiprocess_launch(inject_minidebuginfo, list(elffiles), d, 1243 oe.utils.multiprocess_launch(inject_minidebuginfo, list(elffiles), d,
1244 extraargs=(dvar, dv, d)) 1244 extraargs=(dvar, dv, d))
1245 1245