From a9f37900cde3a9b298267d02a03d6037f903174f Mon Sep 17 00:00:00 2001 From: Saleem Abdulrasool Date: Sun, 18 Jun 2023 15:08:48 -0700 Subject: [PATCH] build: mark installers for the host platform The SDK installer is marked for the host platform irrespective of the SDK content. This is required to permit installation of the foreign architecture SDK. --- build.ps1 | 1 + 1 file changed, 1 insertion(+) diff --git a/build.ps1 b/build.ps1 index b24e2c377..717dd513c 100644 --- a/build.ps1 +++ b/build.ps1 @@ -1378,6 +1378,7 @@ function Build-Installer() { } Build-WiXProject sdk.wixproj -Arch $Arch -Properties @{ + InstallerPlatform = $HostArch.ShortName; PLATFORM_ROOT = "$($Arch.PlatformInstallRoot)\"; SDK_ROOT = "$($Arch.SDKInstallRoot)\"; SWIFT_SOURCE_DIR = "$SourceCache\swift\";