diff options
-rw-r--r-- | SConstruct | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index ed4b3c6242..2a52529539 100644 --- a/SConstruct +++ b/SConstruct @@ -251,6 +251,14 @@ else: print("Automatically detected platform: " + selected_platform) env_base["platform"] = selected_platform +if selected_platform in ["linux", "bsd", "x11"]: + if selected_platform == "x11": + # Deprecated alias kept for compatibility. + print('Platform "x11" has been renamed to "linuxbsd" in Godot 4.0. ' + 'Building for platform "linuxbsd".') + # Alias for convenience. + selected_platform = "linuxbsd" + if selected_platform in platform_list: tmppath = "./platform/" + selected_platform sys.path.insert(0, tmppath) |