mirror of
https://git.yoctoproject.org/poky
synced 2026-04-04 14:02:22 +02:00
pyton-pycurl: Add new recipe from OE.dev
Add python-pycurl_7.19.0 from OE.dev with some tweaks to enable a native version. This package is a dependancy of newer Yum Signed-off-by: Joshua Lock <josh@linux.intel.com>
This commit is contained in:
14
meta/packages/python/python-pycurl/no-static-link.patch
Normal file
14
meta/packages/python/python-pycurl/no-static-link.patch
Normal file
@@ -0,0 +1,14 @@
|
||||
Index: pycurl-7.18.2/setup.py
|
||||
===================================================================
|
||||
--- pycurl-7.18.2.orig/setup.py
|
||||
+++ pycurl-7.18.2/setup.py
|
||||
@@ -97,8 +97,7 @@ else:
|
||||
else:
|
||||
extra_compile_args.append(e)
|
||||
libs = split_quoted(
|
||||
- os.popen("'%s' --libs" % CURL_CONFIG).read()+\
|
||||
- os.popen("'%s' --static-libs" % CURL_CONFIG).read())
|
||||
+ os.popen("'%s' --libs" % CURL_CONFIG).read())
|
||||
for e in libs:
|
||||
if e[:2] == "-l":
|
||||
libraries.append(e[2:])
|
||||
Reference in New Issue
Block a user