Changeset 775 for python/trunk/Lib/distutils/command
- Timestamp:
- Jun 6, 2016, 4:48:20 PM (9 years ago)
- Location:
- python/trunk/Lib/distutils/command
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk/Lib/distutils/command/build_ext.py
r391 r775 669 669 ext_path = string.split(ext_name, '.') 670 670 # OS/2 has an 8 character module (extension) limit :-( 671 if os.name == "os2": 672 ext_path[len(ext_path) - 1] = ext_path[len(ext_path) - 1][:8] 671 # YD build 8.3 moved to emxcompiler.py 672 #if os.name == "os2": 673 # ext_path[len(ext_path) - 1] = ext_path[len(ext_path) - 1][:8] 673 674 # extensions in debug_mode are named 'module_d.pyd' under windows 674 675 so_ext = get_config_var('SO') -
python/trunk/Lib/distutils/command/install_lib.py
r391 r775 113 113 def install(self): 114 114 if os.path.isdir(self.build_dir): 115 outfiles = self.copy_tree(self.build_dir, self.install_dir )115 outfiles = self.copy_tree(self.build_dir, self.install_dir, preserve_symlinks=1) 116 116 else: 117 117 self.warn("'%s' does not exist -- no Python modules to install" %
Note:
See TracChangeset
for help on using the changeset viewer.