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/archive-conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'bin/archive-conf') diff --git a/bin/archive-conf b/bin/archive-conf index 874b5cec..f43d993a 100755 --- a/bin/archive-conf +++ b/bin/archive-conf @@ -14,7 +14,8 @@ import os, sys 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 dispatch_conf -- cgit v1.2.3-65-gdbad