From 38d1a56e7bd6c37eaed97c5db092019c424a7019 Mon Sep 17 00:00:00 2001 From: Thomas-Karl Pietrowski Date: Thu, 19 Nov 2015 18:56:54 +0100 Subject: [PATCH] Adding missing commas I was sure I'm will miss something.. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0dd6d1c6..b3c422dc 100644 --- a/setup.py +++ b/setup.py @@ -113,9 +113,9 @@ def getenv(key): # This dictionary converts values from platform.machine() to a "cpu" string. # It is needed to set the correct lib path, found in the jre_home, eg. /lib//. - machine2cpu = {"i686" : "i386" + machine2cpu = {"i686" : "i386", "x86_64" : "amd64", - "armv7l" : "arm" + "armv7l" : "arm", } if machine() in machine2cpu.keys(): cpu = machine2cpu[machine()]