Changeset 3432


Ignore:
Timestamp:
Jun 15, 2007, 2:24:14 AM (18 years ago)
Author:
bird
Message:

More /@unixroot

File:
1 edited

Legend:

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

    r3418 r3432  
    1010
    1111import os
     12# Some of the constants starting with '/' aren't prefixed
     13# by anything else and needs to be corrected on os2knix.
     14import sys
    1215
    1316VDB_PATH                = "var/db/pkg"
    1417PRIVATE_PATH            = "var/lib/portage"
    1518CACHE_PATH              = "/var/cache/edb"
     19if sys.platform == "os2knix":
     20        CACHE_PATH          = "/@unixroot" + CACHE_PATH
    1621DEPCACHE_PATH           = CACHE_PATH+"/dep"
    1722
     
    5762
    5863MANIFEST2_IDENTIFIERS = ["AUX","MISC","DIST","EBUILD"]
     64
     65if sys.platform == "os2knix":
     66        SANDBOX_BINARY      = "/@unixroot" + SANDBOX_BINARY
     67        BASH_BINARY         = "/@unixroot" + BASH_BINARY
     68        MOVE_BINARY         = "/@unixroot" + MOVE_BINARY
     69        PRELINK_BINARY      = "/@unixroot" + PRELINK_BINARY
     70        INVALID_ENV_FILE    = "/@unixroot" + INVALID_ENV_FILE
     71
    5972# ===========================================================================
    6073# END OF CONSTANTS -- END OF CONSTANTS -- END OF CONSTANTS -- END OF CONSTANT
Note: See TracChangeset for help on using the changeset viewer.