summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Abbott <danielabbott@daniel-abbott.com>2019-01-30 17:38:17 -0700
committerRĂ©mi Verschelde <rverschelde@gmail.com>2019-02-08 11:11:01 +0100
commitb3c0cb08b0a84cc7bf845a34866ca52ba9fe509d (patch)
tree222f2e61c2197bae5e2865b758064e0e066b91ed
parentaa9ec210b9b878f7cfe093ba82715b0a247129b3 (diff)
Disable BT_DEBUG, works around #25476 and #25431
-rw-r--r--modules/bullet/SCsub4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/bullet/SCsub b/modules/bullet/SCsub
index 0416dd7f5f..7e714ba43f 100644
--- a/modules/bullet/SCsub
+++ b/modules/bullet/SCsub
@@ -187,8 +187,8 @@ if env['builtin_bullet']:
thirdparty_sources = [thirdparty_dir + file for file in bullet2_src]
env_bullet.Append(CPPPATH=[thirdparty_dir])
- if env['target'] == "debug" or env['target'] == "release_debug":
- env_bullet.Append(CCFLAGS=['-DBT_DEBUG'])
+ # if env['target'] == "debug" or env['target'] == "release_debug":
+ # env_bullet.Append(CCFLAGS=['-DBT_DEBUG'])
env_thirdparty = env_bullet.Clone()
env_thirdparty.disable_warnings()