diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-08 00:00:26 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-09 22:35:21 +0100 |
commit | 652076293235276e2f978fe377322a6cbd615455 (patch) | |
tree | 9de85c8771bbff3dc8dee18aa23e38b29c3cfa90 /package/python/009-no-termcap-host-path.patch | |
parent | 98b831b855559ba2bc3fcdccf9c29c4936008d12 (diff) | |
download | buildroot-652076293235276e2f978fe377322a6cbd615455.tar.gz buildroot-652076293235276e2f978fe377322a6cbd615455.zip |
python: move to Git formatted patches
Now that the cpython project has a nice Github repository, with tags,
it's much nicer to handle the stack of Python patches with Git. The
python3 package patches had already been converted, but not the python
package patches. Therefore, this commit does the move.
There is no functional change, only reformatting of the patches.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/python/009-no-termcap-host-path.patch')
-rw-r--r-- | package/python/009-no-termcap-host-path.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/package/python/009-no-termcap-host-path.patch b/package/python/009-no-termcap-host-path.patch deleted file mode 100644 index 781e17952f..0000000000 --- a/package/python/009-no-termcap-host-path.patch +++ /dev/null @@ -1,23 +0,0 @@ -Don't look in /usr/lib/termcap for libraries - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> - - -Index: b/setup.py -=================================================================== ---- a/setup.py -+++ b/setup.py -@@ -764,12 +764,9 @@ - pass # Issue 7384: Already linked against curses or tinfo. - elif curses_library: - readline_libs.append(curses_library) -- elif self.compiler.find_library_file(lib_dirs + -- ['/usr/lib/termcap'], -- 'termcap'): -+ elif self.compiler.find_library_file(lib_dirs, 'termcap'): - readline_libs.append('termcap') - exts.append( Extension('readline', ['readline.c'], -- library_dirs=['/usr/lib/termcap'], - extra_link_args=readline_extra_link_args, - libraries=readline_libs) ) - else: |