diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-06-15 22:06:05 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2022-06-16 16:35:49 +0200 |
commit | a2ef1dc48597d85d02576d6b722d1dd784eabf39 (patch) | |
tree | e5d8740d4f54444468063f408100a301125da2ab /solenv | |
parent | 7531f027c742a601c13a7a849dfae795a148d899 (diff) |
drop special case for win 64bit download name, use x86-64 consistently
"x64" was introduced in 2013 for the 64bit windows packages in
efdad0b126abd3c151b545740d0530a0a832d482 for no apparent reason.
Change-Id: Ifae4faaeb99b4e8950cc64bb993d29c0a3ff24dd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/135923
Tested-by: Jenkins
Reviewed-by: Christian Lohmaier <lohmaier+LibreOffice@googlemail.com>
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/bin/modules/installer/download.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/bin/modules/installer/download.pm b/solenv/bin/modules/installer/download.pm index f46dae735864..ad5f94560751 100644 --- a/solenv/bin/modules/installer/download.pm +++ b/solenv/bin/modules/installer/download.pm @@ -377,7 +377,7 @@ sub get_download_architecture } elsif ( $installer::globals::cpuname eq 'X86_64' ) { - $arch = $installer::globals::os eq 'WNT' ? 'x64' : 'x86-64'; + $arch = 'x86-64'; } elsif ( $installer::globals::cpuname eq 'AARCH64' ) { |