From 46fc66e81ee156c1798ec483dccfd32fd5e33f52 Mon Sep 17 00:00:00 2001 From: giovannibajo Date: Sat, 1 Aug 2009 16:10:31 +0000 Subject: [PATCH] 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 --- source/linux/Make.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/linux/Make.py b/source/linux/Make.py index 160f1e2..fd8ee67 100755 --- a/source/linux/Make.py +++ b/source/linux/Make.py @@ -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]