summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python-pycurl
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/python/python-pycurl')
-rw-r--r--meta/recipes-devtools/python/python-pycurl/no-static-link.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python-pycurl/no-static-link.patch b/meta/recipes-devtools/python/python-pycurl/no-static-link.patch
new file mode 100644
index 0000000000..c97f5dc029
--- /dev/null
+++ b/meta/recipes-devtools/python/python-pycurl/no-static-link.patch
@@ -0,0 +1,16 @@
1Upstream-Status: Pending
2
3Index: pycurl-7.18.2/setup.py
4===================================================================
5--- pycurl-7.18.2.orig/setup.py
6+++ pycurl-7.18.2/setup.py
7@@ -97,8 +97,7 @@ else:
8 else:
9 extra_compile_args.append(e)
10 libs = split_quoted(
11- os.popen("'%s' --libs" % CURL_CONFIG).read()+\
12- os.popen("'%s' --static-libs" % CURL_CONFIG).read())
13+ os.popen("'%s' --libs" % CURL_CONFIG).read())
14 for e in libs:
15 if e[:2] == "-l":
16 libraries.append(e[2:])