commit | 725443fef975a6de661b38c358c33c08e22caec5 | [log] [tgz] |
---|---|---|
author | Ronald Oussoren <ronaldoussoren@mac.com> | Sun Jul 11 09:29:09 2010 +0000 |
committer | Ronald Oussoren <ronaldoussoren@mac.com> | Sun Jul 11 09:29:09 2010 +0000 |
tree | 5ef50e6a63a13291ae37e7c991db1b2e3da89d8f | |
parent | 5fd8785567752e5739a6dd47bc5d7426d00d2a51 [diff] |
Fix for issue 9164
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 @@ 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]