From f1a37be69c269e07fc8276bc3387926628ae3a68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Mon, 8 Jul 2019 18:05:48 +0200 Subject: [PATCH] SCons: Fix MBEDTLS_CONFIG_FILE string escape Fixes #30431, regression from #30277. --- core/math/SCsub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/math/SCsub b/core/math/SCsub index aa98c34f798..0995298a4b1 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",