diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch')
| -rw-r--r-- | meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch b/meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch index 09f279ba1d..59592821d7 100644 --- a/meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch +++ b/meta/recipes-devtools/python/python3/0001-Do-not-add-usr-lib-termcap-to-linker-flags-to-avoid-.patch | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | From 23294c6ba6896115828293fdb7e67b47b38ba675 Mon Sep 17 00:00:00 2001 | 1 | From 039c53dd5baddec3359a05be0bff46a3b32bbb84 Mon Sep 17 00:00:00 2001 |
| 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> | 2 | From: Alexander Kanavin <alex.kanavin@gmail.com> |
| 3 | Date: Fri, 25 Jan 2019 19:04:13 +0100 | 3 | Date: Fri, 25 Jan 2019 19:04:13 +0100 |
| 4 | Subject: [PATCH] Do not add /usr/lib/termcap to linker flags to avoid host | 4 | Subject: [PATCH] Do not add /usr/lib/termcap to linker flags to avoid host |
| @@ -12,14 +12,14 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> | |||
| 12 | 1 file changed, 1 deletion(-) | 12 | 1 file changed, 1 deletion(-) |
| 13 | 13 | ||
| 14 | diff --git a/setup.py b/setup.py | 14 | diff --git a/setup.py b/setup.py |
| 15 | index b4357e3..fbec00d 100644 | 15 | index 20d7f35..ab18ff0 100644 |
| 16 | --- a/setup.py | 16 | --- a/setup.py |
| 17 | +++ b/setup.py | 17 | +++ b/setup.py |
| 18 | @@ -856,7 +856,6 @@ class PyBuildExt(build_ext): | 18 | @@ -957,7 +957,6 @@ class PyBuildExt(build_ext): |
| 19 | 'termcap'): | 19 | 'termcap'): |
| 20 | readline_libs.append('termcap') | 20 | readline_libs.append('termcap') |
| 21 | exts.append( Extension('readline', ['readline.c'], | 21 | self.add(Extension('readline', ['readline.c'], |
| 22 | - library_dirs=['/usr/lib/termcap'], | 22 | - library_dirs=['/usr/lib/termcap'], |
| 23 | extra_link_args=readline_extra_link_args, | 23 | extra_link_args=readline_extra_link_args, |
| 24 | libraries=readline_libs) ) | 24 | libraries=readline_libs)) |
| 25 | else: | 25 | else: |
