aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2010-09-04 19:21:21 +0200
committerFabian Groffen <grobian@gentoo.org>2010-09-04 19:21:21 +0200
commitc7eb78e9cba3d8837e65792652432c8d42a59152 (patch)
treea464c5be9aa339f07a4cbc2f2104699a1e2d710b /pym/portage/const.py
parentFix typo. (diff)
downloadportage-c7eb78e9cba3d8837e65792652432c8d42a59152.tar.gz
portage-c7eb78e9cba3d8837e65792652432c8d42a59152.tar.bz2
portage-c7eb78e9cba3d8837e65792652432c8d42a59152.zip
fix comments to match latest intentions in the code
Diffstat (limited to 'pym/portage/const.py')
-rw-r--r--pym/portage/const.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/pym/portage/const.py b/pym/portage/const.py
index 3a77006f7..c1ae458be 100644
--- a/pym/portage/const.py
+++ b/pym/portage/const.py
@@ -1,5 +1,5 @@
# portage: Constants
-# Copyright 1998-2009 Gentoo Foundation
+# Copyright 1998-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
import os
@@ -22,9 +22,8 @@ import os
# would expect.
# Second there is target_root (ROOT) which is used to install somewhere
# completely else, in Prefix of limited use. Because this is an offset
-# always given, the EPREFIX should always be applied in it. Those
-# constants (like VDB_PATH) are always absolute and hence DO have
-# EPREFIX prepended in Prefix.
+# always given, the EPREFIX should always be applied in it, hence the
+# code always prefixes them with EROOT.
# The variables in this file are grouped by config_root, target_root.
# variables used with config_root (these need to be relative)
@@ -42,7 +41,7 @@ MAKE_DEFAULTS_FILE = PROFILE_PATH + "/make.defaults" # FIXME: not used
DEPRECATED_PROFILE_FILE = PROFILE_PATH + "/deprecated"
# variables used with targetroot (these need to be absolute, but not
-# have a leading '/' since they are used directly with os.path.join)
+# have a leading '/' since they are used directly with os.path.join on EROOT)
VDB_PATH = "var/db/pkg"
CACHE_PATH = "var/cache/edb"
PRIVATE_PATH = "var/lib/portage"