aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-02-10 20:26:20 +0000
committerZac Medico <zmedico@gentoo.org>2007-02-10 20:26:20 +0000
commitc3845fcf28236e4838e1cbae1626df9b6eb47f59 (patch)
tree3362a795c825766b86101f8d62bf5d6ac0ac428c /bin/env-update
parentFix imports from the emerge package. (diff)
downloadportage-c3845fcf28236e4838e1cbae1626df9b6eb47f59.tar.gz
portage-c3845fcf28236e4838e1cbae1626df9b6eb47f59.tar.bz2
portage-c3845fcf28236e4838e1cbae1626df9b6eb47f59.zip
Fix automatic sys.path insertions so that they're relative instead of absolute hard coded.
svn path=/main/trunk/; revision=5942
Diffstat (limited to 'bin/env-update')
-rwxr-xr-xbin/env-update3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/env-update b/bin/env-update
index 69daaca87..7be4a09f4 100755
--- a/bin/env-update
+++ b/bin/env-update
@@ -26,7 +26,8 @@ if len(sys.argv) > 1:
try:
import portage
except ImportError:
- sys.path.insert(0, "/usr/lib/portage/pym")
+ from os import path as osp
+ sys.path.insert(0, osp.join(osp.dirname(osp.dirname(__file__)), "pym"))
import portage
try:
portage.env_update(makelinks)