summaryrefslogtreecommitdiff
path: root/portato
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-10-28 00:30:09 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-10-28 00:30:09 +0100
commit58c5b49ae6d822f07879bf7f6a87271b77e7e75d (patch)
treea166c0eb6632f9b837d407b37007bf925ac2e15f /portato
parent4a067c072e3eaa65cb434307ea4e9280d3af9b68 (diff)
downloadportato-58c5b49ae6d822f07879bf7f6a87271b77e7e75d.tar.gz
portato-58c5b49ae6d822f07879bf7f6a87271b77e7e75d.tar.bz2
portato-58c5b49ae6d822f07879bf7f6a87271b77e7e75d.zip
Corrected config path handling.
Now also the 2.1 portage does not include / anymore. Handle this.
Diffstat (limited to 'portato')
-rw-r--r--portato/backend/portage/system.py7
-rw-r--r--portato/backend/portage/system_22.py8
2 files changed, 6 insertions, 9 deletions
diff --git a/portato/backend/portage/system.py b/portato/backend/portage/system.py
index 83eb37a..620ab73 100644
--- a/portato/backend/portage/system.py
+++ b/portato/backend/portage/system.py
@@ -68,7 +68,12 @@ class PortageSystem (SystemInterface):
return PortagePackage(cpv)
def get_config_path (self):
- return portage.USER_CONFIG_PATH
+ path = portage.USER_CONFIG_PATH
+
+ if path[0] != "/":
+ return os.path.join(self.settings.settings["ROOT"], path)
+ else:
+ return path
def get_merge_command (self):
return ["/usr/bin/python", "/usr/bin/emerge"]
diff --git a/portato/backend/portage/system_22.py b/portato/backend/portage/system_22.py
index f69e15c..d720a06 100644
--- a/portato/backend/portage/system_22.py
+++ b/portato/backend/portage/system_22.py
@@ -63,11 +63,3 @@ class PortageSystem_22 (PortageSystem):
def new_package (self, cpv):
return PortagePackage_22(cpv)
-
- def get_config_path (self):
- path = PortageSystem.get_config_path(self)
-
- if path[0] != "/":
- return os.path.join(self.settings.settings["ROOT"], path)
- else:
- return path