diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-07-08 18:05:48 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-07-08 18:05:48 +0200 |
commit | f1a37be69c269e07fc8276bc3387926628ae3a68 (patch) | |
tree | a088d0e7210723e5197dc3077c60856492441959 /core/math/SCsub | |
parent | 56269e2db835e50a4cf2681bb73c44ae41fcca10 (diff) |
SCons: Fix MBEDTLS_CONFIG_FILE string escape
Fixes #30431, regression from #30277.
Diffstat (limited to 'core/math/SCsub')
-rw-r--r-- | core/math/SCsub | 2 |
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", |