From 834c2796ec5e8a23a06155a09ae20b96167794fe Mon Sep 17 00:00:00 2001 From: Austin English Date: Tue, 5 Feb 2019 00:57:54 -0600 Subject: [PATCH] directx9: don't try to install devenum/quartz on win64 --- src/winetricks | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/winetricks b/src/winetricks index 823c03601..4c0813aca 100755 --- a/src/winetricks +++ b/src/winetricks @@ -6716,8 +6716,13 @@ load_directx9() # How many of these do we really need? # We should probably remove most of these...? - w_call devenum - w_call quartz + + if [ "$W_ARCH" = "win64" ]; then + w_warn "Not installing native devenum/quartz (can't find a 64-bit devenum)." + else + w_call devenum + w_call quartz + fi w_try_cabextract -d "$W_TMP" -L -F dxnt.cab "$W_CACHE"/directx9/$DIRECTX_NAME w_try_cabextract -d "$W_SYSTEM32_DLLS" -L -F "msdmo.dll" "$W_TMP/dxnt.cab"