From 725443fef975a6de661b38c358c33c08e22caec5 Mon Sep 17 00:00:00 2001 From: Ronald Oussoren Date: Sun, 11 Jul 2010 09:29:09 +0000 Subject: Fix for issue 9164 --- Lib/distutils/util.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py index 9a77561..8175434 100644 --- a/Lib/distutils/util.py +++ b/Lib/distutils/util.py @@ -143,8 +143,7 @@ def get_platform (): cflags = get_config_vars().get('CFLAGS') archs = re.findall('-arch\s+(\S+)', cflags) - archs.sort() - archs = tuple(archs) + archs = tuple(sorted(set(archs))) if len(archs) == 1: machine = archs[0] -- cgit v0.12