From 1e033e6b2ba7b99e38ad915a6f06a5e689fe11e6 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Tue, 28 Mar 2023 10:47:37 +1300 Subject: [PATCH] buildman: Correct overwriting of settings file The toolchain test causes the settings file to be overwritten, which is annoying for local development. Fix it by passing None as the filename. Signed-off-by: Simon Glass --- tools/buildman/toolchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildman/toolchain.py b/tools/buildman/toolchain.py index ea1ad1bcb8..6bae913197 100644 --- a/tools/buildman/toolchain.py +++ b/tools/buildman/toolchain.py @@ -420,7 +420,7 @@ class Toolchains: Returns: Resolved string - >>> bsettings.Setup() + >>> bsettings.Setup(None) >>> tcs = Toolchains() >>> tcs.Add('fred', False) >>> var_dict = {'oblique' : 'OBLIQUE', 'first' : 'fi${second}rst', \ -- 2.39.5