summaryrefslogtreecommitdiffstats
path: root/modules/mono/build_scripts/mono_configure.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-06-04 22:31:58 +0200
committerGitHub <noreply@github.com>2019-06-04 22:31:58 +0200
commit1c950415b0d3cd2f780b86ca2358adfaaafb4ab6 (patch)
treee581de47308011b2cfb861f285428f5df8543b6d /modules/mono/build_scripts/mono_configure.py
parentdaca2a9a8ed6682067366cccec1815fd17b4f979 (diff)
parentff0c863cb1b8270aae52657e2d4ff43261bf11d8 (diff)
downloadredot-engine-1c950415b0d3cd2f780b86ca2358adfaaafb4ab6.tar.gz
Merge pull request #29473 from neikeq/fix-envvars-mono
Mono: Fix SCons options added to the wrong environment
Diffstat (limited to 'modules/mono/build_scripts/mono_configure.py')
-rw-r--r--modules/mono/build_scripts/mono_configure.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/modules/mono/build_scripts/mono_configure.py b/modules/mono/build_scripts/mono_configure.py
index 2bce3ed376..c549640d61 100644
--- a/modules/mono/build_scripts/mono_configure.py
+++ b/modules/mono/build_scripts/mono_configure.py
@@ -47,14 +47,6 @@ def copy_file(src_dir, dst_dir, name):
def configure(env, env_mono):
- from SCons.Script import BoolVariable, PathVariable, Variables
-
- envvars = Variables()
- envvars.Add(PathVariable('mono_prefix', 'Path to the mono installation directory for the target platform and architecture', '', PathVariable.PathAccept))
- envvars.Add(BoolVariable('mono_static', 'Statically link mono', False))
- envvars.Add(BoolVariable('copy_mono_root', 'Make a copy of the mono installation directory to bundle with the editor', False))
- envvars.Update(env)
-
bits = env['bits']
is_android = env['platform'] == 'android'