From: Dag Sverre Seljebotn Date: Sat, 2 Apr 2011 10:56:46 +0000 (+0200) Subject: BUG Make sure bin/cython imports the right Cython module X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=af902b506b2162d6d8bff345be4d060398c8a45b;p=cython.git BUG Make sure bin/cython imports the right Cython module --- diff --git a/bin/cygdb b/bin/cygdb index 7f2d57f5..a980f6a0 100755 --- a/bin/cygdb +++ b/bin/cygdb @@ -1,6 +1,12 @@ #!/usr/bin/env python import sys +import os + +# Make sure we import the right Cython +binpath, _ = os.path.split(os.path.realpath(__file__)) +cythonpath, _ = os.path.split(binpath) +sys.path.insert(0, cythonpath) from Cython.Debugger import Cygdb as cygdb diff --git a/bin/cython b/bin/cython index 2acad0d0..094beed4 100755 --- a/bin/cython +++ b/bin/cython @@ -4,5 +4,13 @@ # Cython -- Main Program, Unix # +import os +import sys + +# Make sure we import the right Cython +binpath, _ = os.path.split(os.path.realpath(__file__)) +cythonpath, _ = os.path.split(binpath) +sys.path.insert(0, cythonpath) + from Cython.Compiler.Main import main main(command_line = 1)