Skip to content

Commit

Permalink
Correct the enumerator for the ARM64 TARGETDIR (#856)
Browse files Browse the repository at this point in the history
  • Loading branch information
d3r3kk authored Apr 19, 2024
1 parent fccf367 commit ee2fa64
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wix/Includes/OpenJDK.Variables.wxi.template
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<?define Win64="yes" ?>
<?define Arch="(x64)" ?>
<?elseif $(env.Platform)=arm64?>
<?define ProgramFilesFolder="ProgramFilesARMFolder" ?>
<?define ProgramFilesFolder="ProgramFiles64Folder" ?>
<?define Win64="no" ?>
<?define Arch="(arm64)" ?>
<?endif?>
Expand Down
2 changes: 1 addition & 1 deletion wix/Main.wxs.template
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</Directory>
</Directory>
<?elseif $(env.Platform)=arm64?>
<Directory Id="ProgramFilesARMFolder">
<Directory Id="ProgramFiles64Folder"> <!-- ARM64 is 64bit -->
<Directory Id="PRODUCTMANUFACTURER" Name="$(var.ProductManufacturer)">
<Directory Id="INSTALLDIR" Name="$(var.AppFolder)" />
</Directory>
Expand Down

0 comments on commit ee2fa64

Please sign in to comment.