Corrected the constructed system path value (broken by the env.cmd, env.sh & env.py file move in 4abc620bb044).

--HG--
branch : trunk
This commit is contained in:
Jurko 2009-09-12 00:35:57 +02:00
parent 62a4cf68e8
commit 9fd1367845
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
import sys, os, os.path
progpath = sys.argv[0]
packagedir = os.path.abspath(os.path.dirname(progpath))
packagedir = os.path.dirname(os.path.dirname(os.path.abspath(progpath)))
packagename = os.path.basename(packagedir)
bindir = os.path.join(packagedir, 'bin')
if sys.platform == 'win32':