diff options
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index 96fb8bb36..2054945ff 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1017,7 +1017,7 @@ class config: if self.profile_path is None: self.profiles = [] else: - self.profiles = [abssymlink(self.profile_path)] + self.profiles = [os.path.realpath(self.profile_path)] mypath = self.profiles[0] while os.path.exists(os.path.join(mypath, "parent")): mypath = os.path.normpath(os.path.join( |