summaryrefslogtreecommitdiffstats
path: root/platform/linuxbsd/SCsub
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-11-09 16:46:32 +0100
committerGitHub <noreply@github.com>2020-11-09 16:46:32 +0100
commitfdf84d25f3070f7cb8b6fb771f4a71ae4fb25f8e (patch)
treeaf8e9a70bcd897d9b76f8a70b4262fc366f6b93a /platform/linuxbsd/SCsub
parentbd0c40d05197aee3b7257d1954a7061a4a272e6b (diff)
parentff1f0d2cb5e34ce74c63c2b3ce2b4e8662af550f (diff)
downloadredot-engine-fdf84d25f3070f7cb8b6fb771f4a71ae4fb25f8e.tar.gz
Merge pull request #41407 from Calinou/scons-debug-symbols-replace-yes-with-full
Remove `debug_symbols=full` in favor of `debug_symbols=yes`
Diffstat (limited to 'platform/linuxbsd/SCsub')
-rw-r--r--platform/linuxbsd/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linuxbsd/SCsub b/platform/linuxbsd/SCsub
index ae75a75830..6e43ffcedb 100644
--- a/platform/linuxbsd/SCsub
+++ b/platform/linuxbsd/SCsub
@@ -18,5 +18,5 @@ common_x11 = [
prog = env.add_program("#bin/godot", ["godot_linuxbsd.cpp"] + common_x11)
-if (env["debug_symbols"] == "full" or env["debug_symbols"] == "yes") and env["separate_debug_symbols"]:
+if env["debug_symbols"] == "yes" and env["separate_debug_symbols"]:
env.AddPostAction(prog, run_in_subprocess(platform_linuxbsd_builders.make_debug_linuxbsd))