summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-10-31 04:23:06 +0000
committerZac Medico <zmedico@gentoo.org>2006-10-31 04:23:06 +0000
commit64396f7e8e3914d66d4b5efb9bfd80c8cd7a72fd (patch)
tree70a47dc3100da9328a1cd40bb5ac49e37c40a756 /bin/env-update
parentJust use stat instead of lstat for config protect, so that broken symlinks ar... (diff)
downloadportage-multirepo-64396f7e8e3914d66d4b5efb9bfd80c8cd7a72fd.tar.gz
portage-multirepo-64396f7e8e3914d66d4b5efb9bfd80c8cd7a72fd.tar.bz2
portage-multirepo-64396f7e8e3914d66d4b5efb9bfd80c8cd7a72fd.zip
Rely on PYTHONPATH instead of PORTAGE_PYM_PATH for locating portage's python modules, then fall back to an explicit sys.path insertion if an ImportError occurs.
svn path=/main/trunk/; revision=4884
Diffstat (limited to 'bin/env-update')
-rwxr-xr-xbin/env-update7
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/env-update b/bin/env-update
index 1026b1fc..b245b399 100755
--- a/bin/env-update
+++ b/bin/env-update
@@ -4,7 +4,6 @@
# $Id$
import os,sys
-sys.path.insert(0, os.environ.get("PORTAGE_PYM_PATH", "/usr/lib/portage/pym"))
def usage(status):
print "Usage: env-update [--no-ldconfig]"
@@ -24,5 +23,9 @@ if len(sys.argv) > 1:
print "!!! Invalid command line options!\n"
usage(1)
-import portage
+try:
+ import portage
+except ImportError:
+ sys.path.insert(0, "/usr/lib/portage/pym")
+ import portage
portage.env_update(makelinks)