diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-06-02 12:25:40 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-06-02 11:45:24 +0100 |
commit | 59870a852cf88ecef094db0a2adec168a8997626 (patch) | |
tree | 597195e96dbb36bd0a5c1ab481f4e51a01589d17 /meta/recipes-devtools/python/python3/110-enable-zlib.patch | |
parent | 691032c4f0e424c3a097a015a14279ea0a6dd71d (diff) | |
download | openembedded-core-59870a852cf88ecef094db0a2adec168a8997626.tar.gz openembedded-core-59870a852cf88ecef094db0a2adec168a8997626.tar.bz2 openembedded-core-59870a852cf88ecef094db0a2adec168a8997626.zip |
python3: drop 110-enable-zlib.patch
With the patch, the zlib extension wasn't built at all.
Without the patch, it gets build just fine.
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3/110-enable-zlib.patch')
-rw-r--r-- | meta/recipes-devtools/python/python3/110-enable-zlib.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/recipes-devtools/python/python3/110-enable-zlib.patch b/meta/recipes-devtools/python/python3/110-enable-zlib.patch deleted file mode 100644 index fb92a19163..0000000000 --- a/meta/recipes-devtools/python/python3/110-enable-zlib.patch +++ /dev/null @@ -1,21 +0,0 @@ -Enable zlib in python - --Khem - -Upstream-Status: Inappropriate [OE-Specific] - ---- - Modules/Setup.dist | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/Modules/Setup.dist -+++ b/Modules/Setup.dist -@@ -354,7 +354,7 @@ _symtable symtablemodule.c - # Andrew Kuchling's zlib module. - # This require zlib 1.1.3 (or later). - # See http://www.gzip.org/zlib/ --#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz -+zlib zlibmodule.c -lz - - # Interface to the Expat XML parser - # |