Ticket #66: fix errors in Make.py which occur when using a source build of Python.

git-svn-id: http://svn.pyinstaller.org/trunk@694 8dd32b29-ccff-0310-8a9a-9233e24343b1
This commit is contained in:
giovannibajo
2009-08-01 16:10:31 +00:00
parent e5b4bc92b8
commit 46fc66e81e
+2 -2
View File
@@ -95,8 +95,8 @@ def main():
print "(Using Python source directory)"
binlib = exec_prefix
incldir = os.path.join(prefix, 'Include')
config_h_dir = exec_prefix
makefile_in = os.path.join(exec_prefix, 'Modules', 'Makefile')
includes = ['-I' + incldir]
makefile_in = os.path.join(exec_prefix, 'Makefile')
else:
# binlib = os.path.join (sysconfig.get_python_lib(True, True, exec_prefix), 'config')
binlib = sysconfig.get_config_vars('LIBDIR')[0]