summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorMingli Yu <mingli.yu@windriver.com>2020-07-02 10:33:10 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-11-22 13:27:37 +0000
commit75997e9e80d8835b2b0bbfd6d223892cd47fb4ee (patch)
treefd776768c480c98f6f35596c672438c37b48cdee /documentation
parent58bc577ef80e4dc1a5506c44331713c88619b0e6 (diff)
downloadpoky-75997e9e80d8835b2b0bbfd6d223892cd47fb4ee.tar.gz
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>
Diffstat (limited to 'documentation')
0 files changed, 0 insertions, 0 deletions