diff options
Diffstat (limited to 'meta/lib/oe/distro_check.py')
| -rw-r--r-- | meta/lib/oe/distro_check.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/lib/oe/distro_check.py b/meta/lib/oe/distro_check.py index 455135e650..ad13d5e492 100644 --- a/meta/lib/oe/distro_check.py +++ b/meta/lib/oe/distro_check.py | |||
| @@ -288,6 +288,12 @@ def compare_in_distro_packages_list(distro_check_dir, d): | |||
| 288 | bb.data.update_data(localdata) | 288 | bb.data.update_data(localdata) |
| 289 | recipe_name = pnstripped[0] | 289 | recipe_name = pnstripped[0] |
| 290 | 290 | ||
| 291 | if pn.startswith("nativesdk-"): | ||
| 292 | pnstripped = pn.split("nativesdk-") | ||
| 293 | localdata.setVar('OVERRIDES', "pn-" + pnstripped[1] + ":" + d.getVar('OVERRIDES', True)) | ||
| 294 | bb.data.update_data(localdata) | ||
| 295 | recipe_name = pnstripped[1] | ||
| 296 | |||
| 291 | if pn.find("-cross") != -1: | 297 | if pn.find("-cross") != -1: |
| 292 | pnstripped = pn.split("-cross") | 298 | pnstripped = pn.split("-cross") |
| 293 | localdata.setVar('OVERRIDES', "pn-" + pnstripped[0] + ":" + d.getVar('OVERRIDES', True)) | 299 | localdata.setVar('OVERRIDES', "pn-" + pnstripped[0] + ":" + d.getVar('OVERRIDES', True)) |
