Ignore:
Timestamp:
Jun 11, 2007, 12:50:36 AM (18 years ago)
Author:
bird
Message:

os2emx -> os2knix.

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  
    10261026    def debug_print (self, msg):
    10271027        from distutils.debug import DEBUG
    1028         if DEBUG:
    1029             print msg
     1028        # if DEBUG:
     1029        print msg
    10301030
    10311031    def warn (self, msg):
     
    10591059    # compiler
    10601060    ('cygwin.*', 'unix'),
    1061     ('os2emx', 'emx'),
     1061    ('os2knix', 'unix'),
     1062    #('os2emx', 'emx'), - revert later.
    10621063
    10631064    # OS name mappings
  • trunk/essentials/dev-lang/python/Lib/distutils/unixccompiler.py

    r3225 r3402  
    120120    dylib_lib_extension = ".dylib"
    121121    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":
    123123        exe_extension = ".exe"
    124124
Note: See TracChangeset for help on using the changeset viewer.