diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-22 00:10:56 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-08-22 00:10:56 +0200 |
commit | 37ae2a290030b3f0df9f609723d9ad2bdb861a4a (patch) | |
tree | 3cc46b2fc3ae02996eb0d4242003dab1afe2738c /modules/mono | |
parent | 0badddaccb6e3067b62f05ff165720d5342699b9 (diff) | |
parent | 6e9bcc0f18becbed199ad48d3dec01621dc39237 (diff) | |
download | redot-engine-37ae2a290030b3f0df9f609723d9ad2bdb861a4a.tar.gz |
Merge pull request #95921 from akien-mga/scons-validate-opt-in-drivers
SCons: Better validation for platform-specific opt-in drivers
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/config.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/mono/config.py b/modules/mono/config.py index 5ebdb83b36..0573fc662a 100644 --- a/modules/mono/config.py +++ b/modules/mono/config.py @@ -11,9 +11,11 @@ def can_build(env, platform): def configure(env): # Check if the platform has marked mono as supported. supported = env.get("supported", []) - if "mono" not in supported: - raise RuntimeError("This module does not currently support building for this platform") + import sys + + print("The 'mono' module does not currently support building for this platform. Aborting.") + sys.exit(255) env.add_module_version_string("mono") |