python: fix modules_lib_dirs typo in patch-2.7-005-stagng-headers-libs.patch
Closes #3169 Typo in modules_lib_dirs section of patch specified modules_include_dirs instead of modules_lib_dirs. This matters if PYTHON_MODULES_LIB is not passed into the script. Signed-off-by: Mark Wickham <markw@digi.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
694301dc5a
commit
c18c1d667a
1
CHANGES
1
CHANGES
@ -97,6 +97,7 @@
|
|||||||
#3103: make external-deps wants to download gcc-.tar.bz2 when...
|
#3103: make external-deps wants to download gcc-.tar.bz2 when...
|
||||||
#3109: abnormal `make busybox-menuconfig`
|
#3109: abnormal `make busybox-menuconfig`
|
||||||
#3115: How about board specific makefiles?
|
#3115: How about board specific makefiles?
|
||||||
|
#3169: python patch has typo, aborts build in scenario
|
||||||
#3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
|
#3181: dhcp.mk copies S80dhcp-server to etc/init.d, not etc/init.d/
|
||||||
|
|
||||||
2010.11, Released November 30th, 2010:
|
2010.11, Released November 30th, 2010:
|
||||||
|
@ -27,7 +27,7 @@ Index: Python-2.7.1/setup.py
|
|||||||
+ try:
|
+ try:
|
||||||
+ modules_lib_dirs = os.environ["PYTHON_MODULES_LIB"].split()
|
+ modules_lib_dirs = os.environ["PYTHON_MODULES_LIB"].split()
|
||||||
+ except KeyError:
|
+ except KeyError:
|
||||||
+ modules_include_dirs = ['/usr/lib']
|
+ modules_lib_dirs = ['/usr/lib']
|
||||||
+ for dir in modules_include_dirs:
|
+ for dir in modules_include_dirs:
|
||||||
+ add_dir_to_list(self.compiler.include_dirs, dir)
|
+ add_dir_to_list(self.compiler.include_dirs, dir)
|
||||||
+ for dir in modules_lib_dirs:
|
+ for dir in modules_lib_dirs:
|
||||||
|
Loading…
Reference in New Issue
Block a user