summaryrefslogtreecommitdiffstats
path: root/bin/pkgname
diff options
context:
space:
mode:
authorMarius Mauch <genone@gentoo.org>2006-10-26 13:49:45 +0000
committerMarius Mauch <genone@gentoo.org>2006-10-26 13:49:45 +0000
commitd110e776d3c178444130b1361a50b00eac7c0275 (patch)
tree6fae6e36adc1da056de8e52c32e0e01680a85fec /bin/pkgname
parente3d5ecc57975b2a168bc436efd90bc3223f1b4e7 (diff)
downloadportage-d110e776d3c178444130b1361a50b00eac7c0275.tar.gz
portage-d110e776d3c178444130b1361a50b00eac7c0275.tar.bz2
portage-d110e776d3c178444130b1361a50b00eac7c0275.zip
streamline portage pythonpath handling and add an override analog to how the bash side does it
svn path=/main/trunk/; revision=4822
Diffstat (limited to 'bin/pkgname')
-rwxr-xr-xbin/pkgname4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/pkgname b/bin/pkgname
index d1ba2f3dd..546b05d3c 100755
--- a/bin/pkgname
+++ b/bin/pkgname
@@ -3,8 +3,8 @@
# Distributed under the terms of the GNU General Public License v2
# $Id$
-import sys
-sys.path = ["/usr/lib/portage/pym"]+sys.path
+import sys, os
+sys.path.insert(0, os.environ.get("PORTAGE_PYM_PATH", "/usr/lib/portage/pym"))
import portage