Skip to content

Commit

Permalink
Fix wrong copy-and-paste of Bryan's OS X fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Sep 20, 2010
1 parent 7f42ca3 commit 375b1b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -220,9 +220,9 @@ def main():
if 'darwin' in sys.platform and sys.maxint == 2147483647:
# The Python interpreter is running in 32 bit mode on OS X
if "-arch" not in conf["CXXFLAGS"]:
conf["CXXFLAGS"].extend(['-arch', 'i386', '-m32'])
conf["CXXFLAGS"].extend(['-arch', 'i386', '-m32'])
if "-arch" not in conf["LDFLAGS"]:
conf["LDFLAGS"].extend(['-arch', 'i386', '-m32'])
conf["LDFLAGS"].extend(['-arch', 'i386', '-m32'])

ext_kwargs = dict()

Expand Down

0 comments on commit 375b1b8

Please sign in to comment.