summaryrefslogtreecommitdiff
path: root/core/math
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-07-08 18:05:48 +0200
committerRémi Verschelde <rverschelde@gmail.com>2019-07-08 18:05:48 +0200
commitf1a37be69c269e07fc8276bc3387926628ae3a68 (patch)
treea088d0e7210723e5197dc3077c60856492441959 /core/math
parent56269e2db835e50a4cf2681bb73c44ae41fcca10 (diff)
SCons: Fix MBEDTLS_CONFIG_FILE string escape
Fixes #30431, regression from #30277.
Diffstat (limited to 'core/math')
-rw-r--r--core/math/SCsub2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/SCsub b/core/math/SCsub
index aa98c34f79..0995298a4b 100644
--- a/core/math/SCsub
+++ b/core/math/SCsub
@@ -22,7 +22,7 @@ if not has_module:
env_thirdparty = env_math.Clone()
env_thirdparty.disable_warnings()
# Custom config file
- env_thirdparty.Append(CPPDEFINES=[('MBEDTLS_CONFIG_FILE', "thirdparty/mbedtls/include/godot_core_mbedtls_config.h")])
+ env_thirdparty.Append(CPPDEFINES=[('MBEDTLS_CONFIG_FILE', '\\"thirdparty/mbedtls/include/godot_core_mbedtls_config.h\\"')])
thirdparty_mbedtls_dir = "#thirdparty/mbedtls/library/"
thirdparty_mbedtls_sources = [
"aes.c",