diff options
author | necoro <> | 2006-10-15 16:13:37 +0000 |
---|---|---|
committer | necoro <> | 2006-10-15 16:13:37 +0000 |
commit | 40eaa80dce320c6e64e66d96ec28c9fc532c061c (patch) | |
tree | 400c9ca8565ca9d8d6622b1405891f9f528fa9b0 /geneticone/backend/__init__.py | |
parent | d7f6eeadf843200a56cf21a018fc2a5afc8c7bcb (diff) | |
download | portato-40eaa80dce320c6e64e66d96ec28c9fc532c061c.tar.gz portato-40eaa80dce320c6e64e66d96ec28c9fc532c061c.tar.bz2 portato-40eaa80dce320c6e64e66d96ec28c9fc532c061c.zip |
First implementation of "emerge --update world"
Diffstat (limited to 'geneticone/backend/__init__.py')
-rw-r--r-- | geneticone/backend/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/geneticone/backend/__init__.py b/geneticone/backend/__init__.py index 5238765..dbebd17 100644 --- a/geneticone/backend/__init__.py +++ b/geneticone/backend/__init__.py @@ -19,8 +19,8 @@ import gentoolkit import portage # this is set to "var/lib/portage/world" by default - so we add the leading / -portage.WORLD_FILE = "/"+portage.WORLD_FILE -portage.settings = None +portage.WORLD_FILE = portage.settings["ROOT"]+portage.WORLD_FILE +portage.settings = None # we use our own one ... # portage tree vars porttree = gentoolkit.porttree |