summaryrefslogtreecommitdiffstats
path: root/bin/env-update
diff options
context:
space:
mode:
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 1026b1fc1..b245b3990 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)