From ad5527f70b8c330880e0f812226d21f6fa1f7a26 Mon Sep 17 00:00:00 2001 From: Gravemind Date: Thu, 23 Aug 2018 10:27:19 +0200 Subject: [PATCH] build_proton: Fix build wine32 typo `./build_proton.sh --build wine32` was building wine64 instead of wine32. --- build_proton.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_proton.sh b/build_proton.sh index d75d7897..8130c957 100755 --- a/build_proton.sh +++ b/build_proton.sh @@ -620,7 +620,7 @@ case "$BUILD_COMPONENTS" in build_vrclient32 ;; "wine") build_wine64; build_wine32 ;; - "wine32") build_wine64 ;; + "wine32") build_wine32 ;; "wine64") build_wine64 ;; "vrclient") build_vrclient32; build_vrclient64 ;; "vrclient32") build_vrclient32 ;;