# HG changeset patch # User Emmanuel Gil Peyrot # Date 1428574004 -7200 # Node ID 13789ac717c488c23dc623bff1392dd2d460c4d7 # Parent 3168e5ff22dcb3c504baa51ffd6d3a7a8f79a8fe Fix (again…) the OSX and Win32 build. diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -160,7 +160,7 @@ except ImportError: else: nthreads = None # It seems Windows can’t compile in parallel. base = 'Win32GUI' if sys.platform == 'win32' else None - extra = {'options': {'build_exe': {'includes': ext_modules + ['glob', 'socket', 'select']}}, + extra = {'options': {'build_exe': {'includes': [mod.name for mod in ext_modules] + ['glob', 'socket', 'select']}}, 'executables': [Executable(script='scripts/pytouhou', base=base)]}