diff options
-rw-r--r-- | pym/portage/const.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pym/portage/const.py b/pym/portage/const.py index c1ae458be..e56ebecbc 100644 --- a/pym/portage/const.py +++ b/pym/portage/const.py @@ -50,9 +50,12 @@ WORLD_SETS_FILE = PRIVATE_PATH + "/world_sets" CONFIG_MEMORY_FILE = PRIVATE_PATH + "/config" NEWS_LIB_PATH = "var/lib/gentoo" -# these variables are not used with target_root or config_root +# these variables get EPREFIX prepended automagically when they are +# translated into their lowercase variants DEPCACHE_PATH = "/var/cache/edb/dep" GLOBAL_CONFIG_PATH = "/usr/share/portage/config" + +# these variables are not used with target_root or config_root PORTAGE_BASE_PATH = os.path.join(os.sep, os.sep.join(__file__.split(os.sep)[:-3])) PORTAGE_BIN_PATH = PORTAGE_BASE_PATH + "/bin" PORTAGE_PYM_PATH = PORTAGE_BASE_PATH + "/pym" |