diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-07-09 08:27:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-09 08:27:40 +0200 |
commit | 2d77390170eebfc7d9abfeead71876f186565976 (patch) | |
tree | 17504c566aed3e66747e54d37d32ff18866c8f58 /core | |
parent | bf82daf2fd2568135bcee9bd7dfba7649fef2884 (diff) | |
parent | f1a37be69c269e07fc8276bc3387926628ae3a68 (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/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", |