From f7d8eadc368fbc8874015aadb4a9ac63774fff70 Mon Sep 17 00:00:00 2001 From: Aneesh Dogra Date: Sun, 23 Dec 2012 05:14:40 +0000 Subject: Fix binary error for x86_64 systems. --- 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(): -- cgit v0.9.1