Files
poky/meta/recipes-devtools
Mingli Yu 75997e9e80 python3: add ldconfig rdepends for python3-ctypes
The ctypes module needs to use "ldconfig -p" to find the
library path and it simply has below logic if no ldconfig
installed.
  except OSError:
      pass

Before the patch:
  >>> from ctypes.util import find_library
  >>> lib_path = find_library('archive')
  >>> print(lib_path)
  None

After the patch:
  >>> from ctypes.util import find_library
  >>> lib_path = find_library('archive')
  >>> print(lib_path)
  libarchive.so.13

(From OE-Core rev: 84e1a32096db9deb98d282a652beec95dbfe80f1)

Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit ddb96902a124a6e1f035f0fd868b0139989bc1bc)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-11-22 13:27:37 +00:00
..
2020-09-17 12:51:24 +01:00
2020-02-03 13:03:31 +00:00
2020-09-17 12:51:24 +01:00
2020-03-12 22:49:28 +00:00
2019-12-09 12:00:43 +00:00
2020-02-15 10:26:42 +00:00
2020-05-28 18:15:29 +01:00
2020-08-21 15:25:33 +01:00
2019-10-19 23:18:33 +01:00
2018-03-09 09:17:03 -08:00
2020-09-10 19:07:40 +01:00
2020-06-23 11:40:46 +01:00
2020-02-14 13:07:23 +00:00
2019-12-30 23:39:09 +00:00
2019-05-27 17:06:34 +01:00
2020-03-08 08:21:11 +00:00
2020-05-22 16:23:23 +01:00
2019-02-15 16:05:37 +00:00
2019-12-28 23:25:42 +00:00
2019-12-09 12:00:43 +00:00
2020-06-26 18:26:48 +01:00
2020-10-09 12:21:35 +01:00
2018-11-14 11:14:39 +00:00
2020-11-03 08:19:34 +00:00
2020-02-04 15:56:29 +00:00
2020-11-12 13:07:52 +00:00
2020-03-12 22:49:28 +00:00
2020-02-28 23:11:28 +00:00
2020-02-21 09:39:00 +00:00
2020-01-27 16:48:08 +00:00