Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAneesh Dogra <lionaneesh@gmail.com>2012-12-23 05:14:40 (GMT)
committer Aneesh Dogra <lionaneesh@gmail.com>2012-12-23 05:15:39 (GMT)
commitf7d8eadc368fbc8874015aadb4a9ac63774fff70 (patch)
treeabd366872f982f5a9e572f791a5575aa6c29c6bd
parent198a315d715c6fd60d9753c95c2c32a37a62133a (diff)
Fix binary error for x86_64 systems.HEADmaster
-rw-r--r--chess.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/chess.py b/chess.py
index e8945d1..b30556a 100644
--- a/chess.py
+++ b/chess.py
@@ -55,7 +55,8 @@ WK = 10
BK = 11
FILES = 'abcdefgh'
RANKS = '12345678'
-BIN = {'i686': 'i686', 'i586': 'i686', 'armv7l': 'armv7l'}
+BIN = {'i686': 'i686', 'i586': 'i686', 'armv7l': 'armv7l',
+ 'x86_64': 'x86_64'}
class Gnuchess():