Changeset 3367


Ignore:
Timestamp:
May 21, 2007, 3:53:18 AM (18 years ago)
Author:
bird
Message:

need posix bits too.. this is magic.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/essentials/dev-lang/python/Lib/distutils/sysconfig.py

    r3225 r3367  
    462462def _init_os2():
    463463    """Initialize the module as appropriate for OS/2"""
    464     g = {}
     464    # g = {} - want all the posix stuff too please. (cflags etc)
     465    _init_posix();
     466    g = _config_vars;
     467
    465468    # set basic install directories
    466469    g['LIBDEST'] = get_python_lib(plat_specific=0, standard_lib=1)
Note: See TracChangeset for help on using the changeset viewer.