diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-31 23:03:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-31 23:03:07 +0200 |
commit | 64c9b7ffcfbb4c6fc58eb188c7cb9ed513853f3a (patch) | |
tree | a0adcce648da258988d67b995a060610254d5965 | |
parent | a30bfe5176aba20836bce58bcaf508d26234cae0 (diff) | |
parent | 7e8f7e642e3dea7d2e4527f2bc95fbf5b6d3520e (diff) |
Merge pull request #37468 from accidentalrebel/master
Fix for Vulkan loader build error caused by incomplete alias
-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 |