Changeset 3430
- Timestamp:
- Jun 14, 2007, 4:06:57 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/sys-apps/portage/pym/portage.py
r3418 r3430 1003 1003 1004 1004 if config_root is None: 1005 config_root = "/" 1005 if sys.platform == "os2knix": 1006 config_root = "/@unixroot/" 1007 else: 1008 config_root = "/" 1006 1009 1007 1010 config_root = normalize_path(os.path.abspath( … … 1253 1256 1254 1257 if target_root is None: 1255 target_root = "/" 1258 if sys.platform == "os2knix": 1259 target_root = "/@unixroot/" 1260 else: 1261 target_root = "/" 1256 1262 1257 1263 target_root = normalize_path(os.path.abspath(
Note:
See TracChangeset
for help on using the changeset viewer.