Jyrki Wahlstedt <jyrki.wahlst...@wahlstedt.fi> added the comment: The fix could be something like replace line 649 in sysconfig.py:
archs = tuple(archs) with: archs = tuple(sorted(list(set(archs)))) This removes the duplicates, but as transforming the list to set does not seem to keep order, it is necessary to sort the list (hence the previous line sorting the list could be dropped perhaps). ---------- title: 2.7 sysconfig should handle arch duplicates -> 2.7 sysconfig should handle arch duplicates while building universal on OS X _______________________________________ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue9164> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com