summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-07-09 08:27:40 +0200
committerGitHub <noreply@github.com>2019-07-09 08:27:40 +0200
commit2d77390170eebfc7d9abfeead71876f186565976 (patch)
tree17504c566aed3e66747e54d37d32ff18866c8f58 /core
parentbf82daf2fd2568135bcee9bd7dfba7649fef2884 (diff)
parentf1a37be69c269e07fc8276bc3387926628ae3a68 (diff)
Merge pull request #30433 from akien-mga/cryptocore-string-escape
SCons: Fix MBEDTLS_CONFIG_FILE string escape
Diffstat (limited to 'core')
-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",