diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2021-02-08 08:52:21 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2021-02-08 08:53:16 +0100 |
commit | 849c090343a22b98f0c977f2bb3469f709688de4 (patch) | |
tree | 1447e96c9172221f29bbd380b4006c74dded38cc /platform/windows/SCsub | |
parent | 57e2822a05c29db3980ad243c37a34acf6c4d14b (diff) |
SCons: Fix debug_symbols tests after switch to BoolVariable
Bug introduced in #45679.
Fixes part of #45816.
Diffstat (limited to 'platform/windows/SCsub')
-rw-r--r-- | platform/windows/SCsub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/SCsub b/platform/windows/SCsub index 0c9aa77803..47d8e14680 100644 --- a/platform/windows/SCsub +++ b/platform/windows/SCsub @@ -32,5 +32,5 @@ if env["vsproj"]: env.vs_srcs += ["platform/windows/" + str(x)] if not os.getenv("VCINSTALLDIR"): - if env["debug_symbols"] == "yes" and env["separate_debug_symbols"]: + if env["debug_symbols"] and env["separate_debug_symbols"]: env.AddPostAction(prog, run_in_subprocess(platform_windows_builders.make_debug_mingw)) |