From 7e8f7e642e3dea7d2e4527f2bc95fbf5b6d3520e Mon Sep 17 00:00:00 2001 From: ARebel Date: Tue, 31 Mar 2020 23:28:30 +0800 Subject: [PATCH] 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. --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index 373fd098af9..8fc333a8fa0 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