1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
Description: Install things in the correct places with the multiversion stuff
Author: Ryan Niebur <ryan@debian.org>
Last-Update: 2013-09-10
--- a/wxPython/setup.py
+++ b/wxPython/setup.py
@@ -1009,7 +1009,7 @@
if __name__ == "__main__":
if not PREP_ONLY:
-
+ BUILD_OPTIONS['build_base'] = BUILD_BASE + "-common"
if not EGGing:
if INSTALL_MULTIVERSION:
setup(name = 'wxPython-common',
@@ -1024,7 +1024,7 @@
platforms = PLATFORMS,
classifiers = filter(None, CLASSIFIERS.split("\n")),
keywords = KEYWORDS,
-
+ packages = [''],
package_dir = { '': 'wxversion' },
py_modules = ['wxversion'],
|