diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/lib/devtool/standard.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index 4b50e3c63b..e53569c5cc 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -520,7 +520,9 @@ def _extract_source(srctree, keep_temp, devbranch, sync, config, basepath, works | |||
520 | for event in history: | 520 | for event in history: |
521 | if not 'flag' in event: | 521 | if not 'flag' in event: |
522 | if event['op'].startswith((':append[', ':prepend[')): | 522 | if event['op'].startswith((':append[', ':prepend[')): |
523 | extra_overrides.append(event['op'].split('[')[1].split(']')[0]) | 523 | override = event['op'].split('[')[1].split(']')[0] |
524 | if not override.startswith('pn-'): | ||
525 | extra_overrides.append(override) | ||
524 | # We want to remove duplicate overrides. If a recipe had multiple | 526 | # We want to remove duplicate overrides. If a recipe had multiple |
525 | # SRC_URI_override += values it would cause mulitple instances of | 527 | # SRC_URI_override += values it would cause mulitple instances of |
526 | # overrides. This doesn't play nicely with things like creating a | 528 | # overrides. This doesn't play nicely with things like creating a |