1
0
mirror of https://github.com/godotengine/godot synced 2024-07-05 16:43:46 +00:00

Alias platform=x11 to platform=linuxbsd in SCons

This makes it possible for users to follow outdated documentation
and still get a working binary.

This closes #37367.
This commit is contained in:
Hugo Locurcio 2020-03-27 23:51:14 +01:00
parent fcfffd7297
commit 59fbbdc4af
No known key found for this signature in database
GPG Key ID: 39E8F8BE30B0A49C

View File

@ -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)