diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-04-23 16:27:54 -0500 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-04-24 09:41:12 +0200 |
commit | fd2ab721e2f0a8e141280b396c72300a78d51c3d (patch) | |
tree | 1aa993405d4cb606544937ce8269390b9a1f8b64 /methods.py | |
parent | c7f56d327d265fa7b2541fe7c5e6cc1730661749 (diff) | |
download | redot-engine-fd2ab721e2f0a8e141280b396c72300a78d51c3d.tar.gz |
SCons: `scons_version` to environment variable
Diffstat (limited to 'methods.py')
-rw-r--r-- | methods.py | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/methods.py b/methods.py index f0e51c7d6f..01b127ea30 100644 --- a/methods.py +++ b/methods.py @@ -763,19 +763,15 @@ def detect_visual_c_compiler_version(tools_env): def find_visual_c_batch_file(env): from SCons.Tool.MSCommon.vc import get_default_version, get_host_target, find_batch_file, find_vc_pdir - # Syntax changed in SCons 4.4.0. - from SCons import __version__ as scons_raw_version - - scons_ver = env._get_major_minor_revision(scons_raw_version) - msvc_version = get_default_version(env) - if scons_ver >= (4, 4, 0): + # Syntax changed in SCons 4.4.0. + if env.scons_version >= (4, 4, 0): (host_platform, target_platform, _) = get_host_target(env, msvc_version) else: (host_platform, target_platform, _) = get_host_target(env) - if scons_ver < (4, 6, 0): + if env.scons_version < (4, 6, 0): return find_batch_file(env, msvc_version, host_platform, target_platform)[0] # Scons 4.6.0+ removed passing env, so we need to get the product_dir ourselves first, |