diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-22 10:53:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-24 16:33:46 +0100 |
commit | 0110d506b89e20b092d7e0fd60a0d0bbea7a1188 (patch) | |
tree | 43a5023706dfa80d646135b836d08a625298a10b /scripts | |
parent | 03876eb32b23ae1d73b5dcfcc6bb69ecfe6ea938 (diff) | |
download | poky-0110d506b89e20b092d7e0fd60a0d0bbea7a1188.tar.gz |
yocto-check-layer: Remove duplicated code
Nicolas Dechesne spotted there was duplicate code I had introduced with a
previous fix. Remove the second statement since the earlier one is correct
all that is needed.
(From OE-Core rev: f3e8d9f0e53e73de5498fccce81d049a88f6473b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/yocto-check-layer | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/yocto-check-layer b/scripts/yocto-check-layer index 44e77b73d0..05494e752c 100755 --- a/scripts/yocto-check-layer +++ b/scripts/yocto-check-layer | |||
@@ -152,8 +152,6 @@ def main(): | |||
152 | logger.info("Setting up for %s(%s), %s" % (layer['name'], layer['type'], | 152 | logger.info("Setting up for %s(%s), %s" % (layer['name'], layer['type'], |
153 | layer['path'])) | 153 | layer['path'])) |
154 | 154 | ||
155 | shutil.copyfile(bblayersconf + '.backup', bblayersconf) | ||
156 | |||
157 | missing_dependencies = not add_layer_dependencies(bblayersconf, layer, dep_layers, logger) | 155 | missing_dependencies = not add_layer_dependencies(bblayersconf, layer, dep_layers, logger) |
158 | if not missing_dependencies: | 156 | if not missing_dependencies: |
159 | for additional_layer in additional_layers: | 157 | for additional_layer in additional_layers: |