diff options
author | Chris Laplante <chris.laplante@agilent.com> | 2025-01-29 15:20:13 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-01 13:20:45 +0000 |
commit | d37380004c881d3e303246fe924969b46d0eaa6a (patch) | |
tree | 20eebc918e1f0d6df9861b5b662bf6ca3491476b | |
parent | 1923c62feeec014bd098b2080f37cf7b72dcb4c1 (diff) | |
download | poky-d37380004c881d3e303246fe924969b46d0eaa6a.tar.gz |
devtool: standard: fix typo in variable
(From OE-Core rev: 9b24dae60573c5e798f1a2f49338f3e4ecbe8859)
Signed-off-by: Chris Laplante <chris.laplante@agilent.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | scripts/lib/devtool/standard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/standard.py b/scripts/lib/devtool/standard.py index 305536f6f0..ca89c8e882 100644 --- a/scripts/lib/devtool/standard.py +++ b/scripts/lib/devtool/standard.py | |||
@@ -1477,7 +1477,7 @@ def _export_local_files(srctree, rd, destdir, srctreebase): | |||
1477 | added[fragment_fn] = {} | 1477 | added[fragment_fn] = {} |
1478 | else: | 1478 | else: |
1479 | if fragment_fn in updated: | 1479 | if fragment_fn in updated: |
1480 | revoved[fragment_fn] = updated[fragment_fn] | 1480 | removed[fragment_fn] = updated[fragment_fn] |
1481 | del updated[fragment_fn] | 1481 | del updated[fragment_fn] |
1482 | 1482 | ||
1483 | # Special handling for cml1, ccmake, etc bbclasses that generated | 1483 | # Special handling for cml1, ccmake, etc bbclasses that generated |