Changeset 3402 for trunk/essentials/dev-lang/python/Lib/distutils
- Timestamp:
- Jun 11, 2007, 12:50:36 AM (18 years ago)
- Location:
- trunk/essentials/dev-lang/python/Lib/distutils
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/dev-lang/python/Lib/distutils/ccompiler.py
r3225 r3402 1026 1026 def debug_print (self, msg): 1027 1027 from distutils.debug import DEBUG 1028 if DEBUG:1029 1028 # if DEBUG: 1029 print msg 1030 1030 1031 1031 def warn (self, msg): … … 1059 1059 # compiler 1060 1060 ('cygwin.*', 'unix'), 1061 ('os2emx', 'emx'), 1061 ('os2knix', 'unix'), 1062 #('os2emx', 'emx'), - revert later. 1062 1063 1063 1064 # OS name mappings -
trunk/essentials/dev-lang/python/Lib/distutils/unixccompiler.py
r3225 r3402 120 120 dylib_lib_extension = ".dylib" 121 121 static_lib_format = shared_lib_format = dylib_lib_format = "lib%s%s" 122 if sys.platform == "cygwin" :122 if sys.platform == "cygwin" or sys.platform == "os2emx": 123 123 exe_extension = ".exe" 124 124
Note:
See TracChangeset
for help on using the changeset viewer.