From 6bf12d2ed444e86fca521017be5e13eecef2bf58 Mon Sep 17 00:00:00 2001 From: Beq Date: Thu, 24 Oct 2024 07:30:23 +0100 Subject: [PATCH] [build] Fix the D/L URL in the installer. --- indra/newview/installers/windows/installer_template.nsi | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/indra/newview/installers/windows/installer_template.nsi b/indra/newview/installers/windows/installer_template.nsi index 29ae1e54f0..4f82429955 100644 --- a/indra/newview/installers/windows/installer_template.nsi +++ b/indra/newview/installers/windows/installer_template.nsi @@ -238,11 +238,8 @@ Function CheckCPUFlagsAVX2 System::Call 'kernel32::IsProcessorFeaturePresent(i 40) i .r1' ; 40 is PF_AVX2_INSTRUCTIONS_AVAILABLE IntCmp $1 1 OK_AVX2 ; AVX2 not supported - ; Prepare the URL by concatenating '-legacy-cpus' to $DL_URL - StrCpy $2 "${DL_URL}" - StrCpy $2 "-legacy-cpus" /APPEND ; Replace %DLURL% in the language string with the URL - ${WordReplace} "$(MissingAVX2)" "%DLURL%" "$2" "+*" $3 + ${WordReplace} "$(MissingAVX2)" "%DLURL%" "${DL_URL}-legacy-cpus" "+*" $3 MessageBox MB_OK "$3" ${OpenURL} '$2' Quit