forked from freddix/python3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpython3-makefile-location.patch
More file actions
12 lines (11 loc) · 710 Bytes
/
Copy pathpython3-makefile-location.patch
File metadata and controls
12 lines (11 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
diff -aurN Python-3.3.2.orig/Lib/distutils/sysconfig.py Python-3.3.2/Lib/distutils/sysconfig.py
--- Python-3.3.2.orig/Lib/distutils/sysconfig.py 2013-06-07 23:07:28.497182865 +0200
+++ Python-3.3.2/Lib/distutils/sysconfig.py 2013-06-07 23:08:31.577599912 +0200
@@ -256,7 +256,7 @@
"""Return full pathname of installed Makefile from the Python build."""
if python_build:
return os.path.join(_sys_home or project_base, "Makefile")
- lib_dir = get_python_lib(plat_specific=0, standard_lib=1)
+ lib_dir = get_python_lib(plat_specific=1, standard_lib=1)
config_file = 'config-{}{}'.format(get_python_version(), build_flags)
return os.path.join(lib_dir, config_file, 'Makefile')