aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>2014-09-20 05:48:23 +0200
committerArfrever Frehtes Taifersar Arahesis <Arfrever@Apache.Org>2014-09-20 05:48:23 +0200
commit5e3e84b4fc4dc75d520b8e0e894811e3e2c88f56 (patch)
tree163fb7a2d00d1060191766184ba2bb080d103bfb /bin/glsa-check
parent_solve_..slot_conflicts: fix bug #522084 (diff)
downloadportage-5e3e84b4fc4dc75d520b8e0e894811e3e2c88f56.tar.gz
portage-5e3e84b4fc4dc75d520b8e0e894811e3e2c88f56.tar.bz2
portage-5e3e84b4fc4dc75d520b8e0e894811e3e2c88f56.zip
Update sys.path in scripts only when using not installed instance of Portage.
Modules of installed instance of Portage are now placed in standard location, which is included in default sys.path.
Diffstat (limited to 'bin/glsa-check')
-rwxr-xr-xbin/glsa-check4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/glsa-check b/bin/glsa-check
index 972679a80..94dea7398 100755
--- a/bin/glsa-check
+++ b/bin/glsa-check
@@ -8,8 +8,8 @@ import sys
import codecs
from os import path as osp
-pym_path = osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), "pym")
-sys.path.insert(0, pym_path)
+if osp.isfile(osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), ".portage_not_installed")):
+ sys.path.insert(0, osp.join(osp.dirname(osp.dirname(osp.realpath(__file__))), "pym"))
import portage
portage._internal_caller = True
from portage import os