Changeset 3430


Ignore:
Timestamp:
Jun 14, 2007, 4:06:57 AM (18 years ago)
Author:
bird
Message:

Changed target and config roots to /@unixroot on os2knix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/essentials/sys-apps/portage/pym/portage.py

    r3418 r3430  
    10031003
    10041004                        if config_root is None:
    1005                                 config_root = "/"
     1005                                if sys.platform == "os2knix":
     1006                                        config_root = "/@unixroot/"
     1007                                else:
     1008                                        config_root = "/"
    10061009
    10071010                        config_root = normalize_path(os.path.abspath(
     
    12531256
    12541257                        if target_root is None:
    1255                                 target_root = "/"
     1258                                if sys.platform == "os2knix":
     1259                                        target_root = "/@unixroot/"
     1260                                else:
     1261                                        target_root = "/"
    12561262
    12571263                        target_root = normalize_path(os.path.abspath(
Note: See TracChangeset for help on using the changeset viewer.