diff options
author | ARebel <accidentalrebel@gmail.com> | 2020-03-31 23:28:30 +0800 |
---|---|---|
committer | ARebel <accidentalrebel@gmail.com> | 2020-03-31 23:28:30 +0800 |
commit | 7e8f7e642e3dea7d2e4527f2bc95fbf5b6d3520e (patch) | |
tree | d332b2846ec118862af0096e1f1c4108a3bf6404 | |
parent | 3a996faeedda9fa411693a5973d3a56c703e81d8 (diff) |
Fix for Vulkan loader related build error caused by incomplete alias
Fixes #37465. The #37369 commit which added an alias for linuxbsd
platform did not work with the latest branch.
-rw-r--r-- | SConstruct | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index 373fd098af..8fc333a8fa 100644 --- a/SConstruct +++ b/SConstruct @@ -258,6 +258,7 @@ if selected_platform in ["linux", "bsd", "x11"]: print('Platform "x11" has been renamed to "linuxbsd" in Godot 4.0. Building for platform "linuxbsd".') # Alias for convenience. selected_platform = "linuxbsd" + env_base["platform"] = selected_platform if selected_platform in platform_list: tmppath = "./platform/" + selected_platform |