wxwidgets2.6 (2.6.3.2.2-5) wxPython/setup.py

Summary

 wxPython/setup.py |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

    
download this patch

Patch contents

--- wxwidgets2.6-2.6.3.2.2.orig/wxPython/setup.py
+++ wxwidgets2.6-2.6.3.2.2/wxPython/setup.py
@@ -857,7 +857,6 @@
                            },
               )
 
-
         if INSTALL_MULTIVERSION:
             setup(name             = 'wxPython-common',
                   version          = VERSION,
@@ -871,13 +870,13 @@
                   platforms        = PLATFORMS,
                   classifiers      = filter(None, CLASSIFIERS.split("\n")),
                   keywords         = KEYWORDS,
-
+                  packages = [''],
                   package_dir = { '': 'wxversion' },
                   py_modules = ['wxversion'],
 
                   data_files = [('', ['src/wx.pth'])],
                   
-                  options = { 'build'            : { 'build_base' : BUILD_BASE },
+                  options = { 'build'            : { 'build_base' : BUILD_BASE + "-common" },
                               },
                   
                   cmdclass = { 'install_data':    wx_smart_install_data,