summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
Diffstat (limited to 'pym')
-rw-r--r--pym/portage.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pym/portage.py b/pym/portage.py
index cfef72343..c977637ec 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -1004,8 +1004,8 @@ class config:
if config_root is None:
config_root = "/"
- config_root = \
- normalize_path(config_root).rstrip(os.path.sep) + os.path.sep
+ config_root = normalize_path(os.path.abspath(
+ config_root)).rstrip(os.path.sep) + os.path.sep
check_var_directory("PORTAGE_CONFIGROOT", config_root)
@@ -1256,8 +1256,8 @@ class config:
if target_root is None:
target_root = "/"
- target_root = \
- normalize_path(target_root).rstrip(os.path.sep) + os.path.sep
+ target_root = normalize_path(os.path.abspath(
+ target_root)).rstrip(os.path.sep) + os.path.sep
check_var_directory("ROOT", target_root)