From c3845fcf28236e4838e1cbae1626df9b6eb47f59 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sat, 10 Feb 2007 20:26:20 +0000 Subject: Fix automatic sys.path insertions so that they're relative instead of absolute hard coded. svn path=/main/trunk/; revision=5942 --- bin/pkgname | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin/pkgname') diff --git a/bin/pkgname b/bin/pkgname index ee4807744..e842f38fb 100755 --- a/bin/pkgname +++ b/bin/pkgname @@ -7,7 +7,8 @@ import sys, os 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 a=portage.pkgsplit(sys.argv[1]) -- cgit v1.2.3-1-g7c22