Skip to content

Commit

Permalink
jet40: fix installation on win64
Browse files Browse the repository at this point in the history
This fixes #920

jet40 needs mdac, but mdac27 doesn't support win64, so use mdac28 instead.
  • Loading branch information
austin987 committed May 8, 2018
1 parent aab121b commit 7dd1edf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/winetricks
Expand Up @@ -8142,7 +8142,12 @@ w_metadata jet40 dlls \

load_jet40()
{
w_call mdac27
# mdac27 is 32-bit only, so use mdac28 for win64:
if [ "$W_ARCH" = "win64" ] ; then
w_call mdac28
else
w_call mdac27
fi
w_call wsh57

# https://support.microsoft.com/kb/239114
Expand Down

0 comments on commit 7dd1edf

Please sign in to comment.