From: Rudolf Polzer Date: Thu, 8 Jan 2015 16:47:43 +0000 (+0100) Subject: x64 is the new default. Let x86 get the odd name instead then. X-Git-Tag: xonotic-v0.8.0~1 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=9100bb8613faba24f33d163dc49065d65590c431 x64 is the new default. Let x86 get the odd name instead then. --- diff --git a/misc/tools/all/release.subr b/misc/tools/all/release.subr index 2b469903..3fcbb63e 100644 --- a/misc/tools/all/release.subr +++ b/misc/tools/all/release.subr @@ -225,17 +225,17 @@ case "$cmd" in release-engine-win32) release_common good=true - verbose "$SELF" release-getbinary Xonotic/xonotic.exe || good=false - verbose "$SELF" release-getbinary Xonotic/xonotic-wgl.exe || good=false - verbose "$SELF" release-getbinary Xonotic/xonotic-dedicated.exe || good=false + verbose "$SELF" release-getbinary Xonotic/xonotic-x86.exe || good=false + verbose "$SELF" release-getbinary Xonotic/xonotic-x86-wgl.exe || good=false + verbose "$SELF" release-getbinary Xonotic/xonotic-x86-dedicated.exe || good=false $good ;; release-engine-win64) release_common good=true - verbose "$SELF" release-getbinary Xonotic/xonotic-x64.exe || good=false - verbose "$SELF" release-getbinary Xonotic/xonotic-x64-wgl.exe || good=false - verbose "$SELF" release-getbinary Xonotic/xonotic-x64-dedicated.exe || good=false + verbose "$SELF" release-getbinary Xonotic/xonotic.exe || good=false + verbose "$SELF" release-getbinary Xonotic/xonotic-wgl.exe || good=false + verbose "$SELF" release-getbinary Xonotic/xonotic-dedicated.exe || good=false $good ;; release-engine-osx)