summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python-pycurl
diff options
context:
space:
mode:
authorAdrian Dudau <adrian.dudau@enea.com>2014-06-26 14:36:22 +0200
committerAdrian Dudau <adrian.dudau@enea.com>2014-06-26 15:32:53 +0200
commitf4cf9fe05bb3f32fabea4e54dd92d368967a80da (patch)
tree487180fa9866985ea7b28e625651765d86f515c3 /meta/recipes-devtools/python/python-pycurl
downloadpoky-f4cf9fe05bb3f32fabea4e54dd92d368967a80da.tar.gz
initial commit for Enea Linux 4.0
Migrated from the internal git server on the daisy-enea branch Signed-off-by: Adrian Dudau <adrian.dudau@enea.com>
Diffstat (limited to 'meta/recipes-devtools/python/python-pycurl')
-rw-r--r--meta/recipes-devtools/python/python-pycurl/no-static-link.patch17
1 files changed, 17 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..907380f1ca
--- /dev/null
+++ b/meta/recipes-devtools/python/python-pycurl/no-static-link.patch
@@ -0,0 +1,17 @@
1Upstream-Status: Pending
2
3Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
4
5Index: pycurl-7.19.3/setup.py
6===================================================================
7--- pycurl-7.19.3.orig/setup.py 2014-01-10 08:04:40.000000000 +0200
8+++ pycurl-7.19.3/setup.py 2014-02-04 15:09:08.411552887 +0200
9@@ -211,7 +211,7 @@
10 # If neither --libs nor --static-libs work, fail.
11 optbuf = ""
12 errtext = ''
13- for option in ["--libs", "--static-libs"]:
14+ for option in ["--libs"]:
15 p = subprocess.Popen((CURL_CONFIG, option),
16 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
17 stdout, stderr = p.communicate()