diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-20 14:39:31 +0100 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2012-03-20 17:19:20 +0100 |
commit | 1c3a152b3c5cb07447943e61db08d7f0387e40a7 (patch) | |
tree | 25ada0b8b729e58c6c47c1a7d01c4c3200378440 /config | |
parent | ac3f59ffb1e63934bc57ce9586a2b8f4a7246a88 (diff) |
Fix windows install path for python modules
Diffstat (limited to 'config')
-rw-r--r-- | config/windows.config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/windows.config b/config/windows.config index 0acc0b58..911d1fa2 100644 --- a/config/windows.config +++ b/config/windows.config @@ -71,8 +71,8 @@ os.environ['lt_cv_deplibs_check_method'] = 'pass_all' # Python os.environ['am_cv_python_version'] = '2.7' os.environ['am_cv_python_platform'] = 'win32' -os.environ['am_cv_python_pyexecdir'] = '%s/Python27/Lib/site-packages' % toolchain_prefix -os.environ['am_cv_python_pythondir'] = '%s/Python27/Lib/site-packages' % toolchain_prefix +os.environ['am_cv_python_pyexecdir'] = '%s/lib/Python27/Lib/site-packages' % prefix +os.environ['am_cv_python_pythondir'] = '%s/lib/Python27/Lib/site-packages' % prefix os.environ['PYTHON_INCLUDES'] = '-I%s/include/Python2.7 -I%s/include/Python2.7' % (toolchain_prefix, toolchain_prefix) os.environ['PYTHON_LIBS'] = '-lpython27' |