[vlc-commits] [Git][videolan/vlc][3.0.x] package/win32: install arm64 binaries in Program Files from the MSI package
Steve Lhomme (@robUx4)
gitlab at videolan.org
Sat Nov 30 17:12:13 UTC 2024
Steve Lhomme pushed to branch 3.0.x at VideoLAN / VLC
Commits:
4bf49f09 by Steve Lhomme at 2024-11-29T08:55:22+01:00
package/win32: install arm64 binaries in Program Files from the MSI package
Instead of defaulting to "Program Files (x86)".
Fixes #28886
(cherry picked from commit 840c29fd7dd7781bc890ea48e331c65b18ba3a4b)
- - - - -
1 changed file:
- extras/package/win32/msi/config.wxi.in
Changes:
=====================================
extras/package/win32/msi/config.wxi.in
=====================================
@@ -18,14 +18,14 @@
<?define Platform= "@WINDOWS_ARCH@" ?>
- <?if $(var.Platform) = "x64" ?>
- <?define Win64 = "yes" ?>
- <?define PlatformString = "64-bit"?>
- <?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>
- <?else ?>
+ <?if $(var.Platform) = "x86" ?>
<?define Win64 = "no" ?>
<?define PlatformString = "32-bit"?>
<?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>
+ <?else ?>
+ <?define Win64 = "yes" ?>
+ <?define PlatformString = "64-bit"?>
+ <?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>
<?endif ?>
<?define AppFolder = "VLC" ?>
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/4bf49f09cae811e00ec1e69252d476f44c8eb796
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/4bf49f09cae811e00ec1e69252d476f44c8eb796
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
More information about the vlc-commits
mailing list