diff options
author | Khem Raj <raj.khem@gmail.com> | 2021-02-20 11:09:23 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-23 22:35:00 +0000 |
commit | b7d18a2fa7f0983b802a7a2238d7e56acbf8e1c8 (patch) | |
tree | ca7ed4fbf834b9181ed94bb7040bae3c31346156 /meta/recipes-core/musl | |
parent | 1963444d58a1edfd882201fa2c76643025822984 (diff) | |
download | poky-b7d18a2fa7f0983b802a7a2238d7e56acbf8e1c8.tar.gz |
musl: Install /lib directory
loader is installed into /lib and ${base_libdir} may not be always
pointing to /lib, while here we want to create the directory where ldso
will reside
(From OE-Core rev: 76795b5a4452b531c342df2c8a3bbb264cc8a8d2)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/musl')
-rw-r--r-- | meta/recipes-core/musl/musl_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/musl/musl_git.bb b/meta/recipes-core/musl/musl_git.bb index 562e80ae43..e6f9e2441e 100644 --- a/meta/recipes-core/musl/musl_git.bb +++ b/meta/recipes-core/musl/musl_git.bb | |||
@@ -62,7 +62,7 @@ do_compile() { | |||
62 | 62 | ||
63 | do_install() { | 63 | do_install() { |
64 | oe_runmake install DESTDIR='${D}' | 64 | oe_runmake install DESTDIR='${D}' |
65 | install -d ${D}${bindir} ${D}${base_libdir} ${D}${sysconfdir} | 65 | install -d ${D}${bindir} ${D}/lib ${D}${sysconfdir} |
66 | echo "${base_libdir}" > ${D}${sysconfdir}/ld-musl-${MUSL_LDSO_ARCH}.path | 66 | echo "${base_libdir}" > ${D}${sysconfdir}/ld-musl-${MUSL_LDSO_ARCH}.path |
67 | echo "${libdir}" >> ${D}${sysconfdir}/ld-musl-${MUSL_LDSO_ARCH}.path | 67 | echo "${libdir}" >> ${D}${sysconfdir}/ld-musl-${MUSL_LDSO_ARCH}.path |
68 | rm -f ${D}${bindir}/ldd ${D}${GLIBC_LDSO} | 68 | rm -f ${D}${bindir}/ldd ${D}${GLIBC_LDSO} |