From: Simon Glass Date: Wed, 19 Jul 2023 23:49:12 +0000 (-0600) Subject: buildman: Drop unnecessary assignment of config_out X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=8926025eabf73828b987425ebcf2caf6bb17acee;p=u-boot.git buildman: Drop unnecessary assignment of config_out This is already set up earlier in the function, so drop the extra assignment. Signed-off-by: Simon Glass --- diff --git a/tools/buildman/builderthread.py b/tools/buildman/builderthread.py index f110137e8f..ad12e9ede7 100644 --- a/tools/buildman/builderthread.py +++ b/tools/buildman/builderthread.py @@ -286,7 +286,6 @@ class BuilderThread(threading.Thread): cfg_file = os.path.join(out_dir, '.config') cmd_list = [] if do_config or adjust_cfg: - config_out = '' if self.mrproper: result = self.make(commit, brd, 'mrproper', cwd, 'mrproper', *args, env=env)