From 7a468163d7496b4d7f68e3a8e247fdc83dafa00c Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Fri, 23 Jan 2015 16:40:02 -0500 Subject: [PATCH] messenger/make.py: Changed if to elif in platform check for win32. If it's win32, it won't be one of the others. --- messenger/make.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messenger/make.py b/messenger/make.py index fa686be..f0b8e77 100755 --- a/messenger/make.py +++ b/messenger/make.py @@ -14,7 +14,7 @@ messenger_dir = 'mexa64' elif platform.startswith('darwin'): messenger_dir = 'mexmaci64' -if platform.startswith('win32'): +elif platform.startswith('win32'): # We further need to differniate 32 from 64 bit: maxint = sys.maxint() if maxint == 9223372036854775807: