summaryrefslogtreecommitdiffstats
path: root/modules/mono
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-08-22 00:10:56 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-08-22 00:10:56 +0200
commit37ae2a290030b3f0df9f609723d9ad2bdb861a4a (patch)
tree3cc46b2fc3ae02996eb0d4242003dab1afe2738c /modules/mono
parent0badddaccb6e3067b62f05ff165720d5342699b9 (diff)
parent6e9bcc0f18becbed199ad48d3dec01621dc39237 (diff)
downloadredot-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.py6
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")