diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-12-10 10:10:47 -0600 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-12-10 12:14:27 -0600 |
commit | 368c0bc0acfe4621f21195193633bf7f28cbd4a7 (patch) | |
tree | 9b06a59bd5e71f8527df49e5b081541df4e85161 /platform/linuxbsd/detect.py | |
parent | 4f9b6d9a3f7ba9315312c563ca6f805b60b635ab (diff) | |
download | redot-engine-368c0bc0acfe4621f21195193633bf7f28cbd4a7.tar.gz |
Misc build system fixes
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r-- | platform/linuxbsd/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 07e16a982b..ab643b254a 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -161,7 +161,7 @@ def configure(env): env.Append(LINKFLAGS=["-ftest-coverage", "-fprofile-arcs"]) if env["use_ubsan"] or env["use_asan"] or env["use_lsan"] or env["use_tsan"] or env["use_msan"]: - env.extra_suffix += "s" + env.extra_suffix += ".san" if env["use_ubsan"]: env.Append( |