summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3/remove_sqlite_rpath.patch
diff options
context:
space:
mode:
authorDominic Sacré <dominic.sacre@gmx.de>2015-07-28 16:58:38 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-08-01 22:24:18 +0100
commit10196e346579fb443e63b57d61393a11c319b9a5 (patch)
treeed6d5e21f8f09af0c992e69cd48ad8aeb29ee168 /meta/recipes-devtools/python/python3/remove_sqlite_rpath.patch
parentb5e9dbbe8245f47d2d3d77f219a2d30a48e1918b (diff)
downloadpoky-10196e346579fb443e63b57d61393a11c319b9a5.tar.gz
python3: delete patches that don't get applied anywhere
These patches are not referenced in any of the Python recipes. (From OE-Core rev: 05d18a1d2630fbe81d8218c3722481d31bf0892f) Signed-off-by: Dominic Sacré <dominic.sacre@gmx.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3/remove_sqlite_rpath.patch')
-rw-r--r--meta/recipes-devtools/python/python3/remove_sqlite_rpath.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/meta/recipes-devtools/python/python3/remove_sqlite_rpath.patch b/meta/recipes-devtools/python/python3/remove_sqlite_rpath.patch
deleted file mode 100644
index 4ec627ea51..0000000000
--- a/meta/recipes-devtools/python/python3/remove_sqlite_rpath.patch
+++ /dev/null
@@ -1,19 +0,0 @@
1This patch removes the RPATH setting which contains a pointer to
2the target relocated sysroot, which is incorrect.
3
4Upstream-Status: Inappropriate [Embedded Specific]
5
6Signed-off-by: Saul Wold <sgw@linux.intel.com>
7
8Index: Python-2.6.6/setup.py
9===================================================================
10--- Python-2.6.6.orig/setup.py 2011-09-28 14:22:57.000000000 -0700
11+++ Python-2.6.6/setup.py 2011-09-28 16:11:25.147279633 -0700
12@@ -1079,7 +1079,6 @@
13 include_dirs=["Modules/_sqlite",
14 sqlite_incdir],
15 library_dirs=sqlite_libdir,
16- runtime_library_dirs=sqlite_libdir,
17 extra_link_args=sqlite_extra_link_args,
18 libraries=["sqlite3",]))
19 else: