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/emaint | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin/emaint') diff --git a/bin/emaint b/bin/emaint index ee9336667..36d67501d 100755 --- a/bin/emaint +++ b/bin/emaint @@ -7,7 +7,8 @@ import re 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 import portage.const, portage.exception -- cgit v1.2.3-1-g7c22