diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-01-04 19:23:28 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-01-05 00:14:15 +0100 |
commit | 5c63280caf23ca7438e2fe23586cca9f450fc936 (patch) | |
tree | 0e3bf7672070a5bb06d298b2d01abe61caf0c085 /package/python3/018-ncursesw-remove-wrong-includedir.patch | |
parent | 6fc5de4ef466b649b37a86e4f4994a667149dd80 (diff) | |
download | buildroot-5c63280caf23ca7438e2fe23586cca9f450fc936.tar.gz buildroot-5c63280caf23ca7438e2fe23586cca9f450fc936.zip |
python3: switch to Git formatted patches
In preparation for the bump to Python 3.5.0, let's switch all the
patches to the Git format. This way, a Git repository of the Python
source code can be used to manage those patches, which makes it easier
to bump to newer Python versions.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/python3/018-ncursesw-remove-wrong-includedir.patch')
-rw-r--r-- | package/python3/018-ncursesw-remove-wrong-includedir.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/package/python3/018-ncursesw-remove-wrong-includedir.patch b/package/python3/018-ncursesw-remove-wrong-includedir.patch deleted file mode 100644 index 1c26438334..0000000000 --- a/package/python3/018-ncursesw-remove-wrong-includedir.patch +++ /dev/null @@ -1,21 +0,0 @@ -Do not harcode invalid path to ncursesw headers - -Adding /usr/include/ncursesw is obviously invalid when -cross-compiling. Since the ncursesw headers are no longer installed in -usr/include/ncursesw/, but directly in usr/include, there is anyway no -need for a special header path. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> - -Index: b/setup.py -=================================================================== ---- a/setup.py -+++ b/setup.py -@@ -1276,7 +1276,6 @@ - panel_library = 'panel' - if curses_library == 'ncursesw': - curses_defines.append(('HAVE_NCURSESW', '1')) -- curses_includes.append('/usr/include/ncursesw') - # Bug 1464056: If _curses.so links with ncursesw, - # _curses_panel.so must link with panelw. - panel_library = 'panelw' |