import m64py from source

This commit is contained in:
Guillermo Reisch 2014-01-14 19:16:01 +01:00 committed by Milan Nikolic
parent 006797145a
commit b558bb13ba
2 changed files with 2 additions and 2 deletions

2
m64py
View file

@ -22,7 +22,7 @@ import signal
if os.path.isdir(os.path.join(".","src")) and os.path.isfile(
os.path.join(".","setup.py")):
sys.path.append(os.path.realpath("src"))
sys.path.insert(0, os.path.realpath("src"))
try:
import sip

View file

@ -15,7 +15,7 @@ from distutils.command.build import build
from distutils.command.clean import clean
from distutils.dir_util import copy_tree
sys.path.append(realpath("src"))
sys.path.insert(0, realpath("src"))
from m64py.core.defs import FRONTEND_VERSION
BASE_DIR = dirname(realpath(__file__))