summaryrefslogtreecommitdiff
path: root/platform/osx/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2021-02-08 08:52:21 +0100
committerRémi Verschelde <rverschelde@gmail.com>2021-02-08 08:53:16 +0100
commit849c090343a22b98f0c977f2bb3469f709688de4 (patch)
tree1447e96c9172221f29bbd380b4006c74dded38cc /platform/osx/detect.py
parent57e2822a05c29db3980ad243c37a34acf6c4d14b (diff)
SCons: Fix debug_symbols tests after switch to BoolVariable
Bug introduced in #45679. Fixes part of #45816.
Diffstat (limited to 'platform/osx/detect.py')
-rw-r--r--platform/osx/detect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py
index 47ac609917..acea00c5ac 100644
--- a/platform/osx/detect.py
+++ b/platform/osx/detect.py
@@ -54,7 +54,7 @@ def configure(env):
if env["arch"] != "arm64":
env.Prepend(CCFLAGS=["-msse2"])
- if env["debug_symbols"] == "yes":
+ if env["debug_symbols"]:
env.Prepend(CCFLAGS=["-g2"])
elif env["target"] == "release_debug":
@@ -63,7 +63,7 @@ def configure(env):
else: # optimize for size
env.Prepend(CCFLAGS=["-Os"])
env.Prepend(CPPDEFINES=["DEBUG_ENABLED"])
- if env["debug_symbols"] == "yes":
+ if env["debug_symbols"]:
env.Prepend(CCFLAGS=["-g2"])
elif env["target"] == "debug":