Browse Source

fix pycurl build

Waldemar Brodkorb 10 years ago
parent
commit
e6905e7a46

+ 1 - 1
package/pycurl/Makefile

@@ -8,7 +8,7 @@ PKG_VERSION:=		7.19.0
 PKG_RELEASE:=		1
 PKG_MD5SUM:=		919d58fe37e69fe87ce4534d8b6a1c7b
 PKG_DESCR:=		Python module for fetching of files
-PKG_SECTION:=		misc
+PKG_SECTION:=		lang
 PKG_BUILDDEP:=		python2 curl
 PKG_DEPENDS:=		python2 libcurl
 PKG_URL:=		http://pycurl.sourceforge.net/

+ 1 - 1
package/python2/Makefile

@@ -5,7 +5,7 @@ include ${TOPDIR}/rules.mk
 
 PKG_NAME:=		python2
 PKG_VERSION:=		2.7.5
-PKG_RELEASE:=		4
+PKG_RELEASE:=		5
 PKG_MD5SUM:=		b4f01a1d0ba0b46b05c73b2ac909b1df
 PKG_DESCR:=		Python scripting language (Version 2)
 PKG_SECTION:=		lang

+ 10 - 0
package/python2/patches/patch-Lib_distutils_sysconfig_py

@@ -0,0 +1,10 @@
+--- Python-2.7.5.orig/Lib/distutils/sysconfig.py	2013-05-12 05:32:42.000000000 +0200
++++ Python-2.7.5/Lib/distutils/sysconfig.py	2013-11-03 18:03:53.000000000 +0100
+@@ -76,6 +76,7 @@ def get_python_inc(plat_specific=0, pref
+     """
+     if prefix is None:
+         prefix = plat_specific and EXEC_PREFIX or PREFIX
++        prefix = re.sub('host_', 'target_', prefix)
+ 
+     if os.name == "posix":
+         if python_build: