mirror of
https://git.yoctoproject.org/poky
synced 2026-04-20 09:32:13 +02:00
ncurses: use ln -r to generate relative symlink
Instead of using a Python do_install() and calling oe.path.make_relative_symlink, just pass -r to ln to generate a relative symlink directly. (From OE-Core rev: 65c2439ab6dcbd4c52439cdc96acb8ba222c196b) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
e6e5f64baf
commit
f363c361fb
@@ -147,12 +147,7 @@ _install_cfgs = "\
|
||||
PKG_CONFIG_LIBDIR='${libdir}/pkgconfig' \
|
||||
"
|
||||
|
||||
python do_install () {
|
||||
bb.build.exec_func("shell_do_install", d)
|
||||
oe.path.make_relative_symlink(d.expand("${D}${libdir}/libtinfo.so"))
|
||||
}
|
||||
|
||||
shell_do_install() {
|
||||
do_install() {
|
||||
# Order of installation is important; widec installs a 'curses.h'
|
||||
# header with more definitions and must be installed last hence.
|
||||
# Compatibility of these headers will be checked in 'do_test()'.
|
||||
@@ -226,8 +221,7 @@ shell_do_install() {
|
||||
|
||||
mv ${D}${libdir}/libtinfo.so.* ${D}${base_libdir}
|
||||
rm ${D}${libdir}/libtinfo.so
|
||||
# We'll turn this into a relative symlink after do_install returns
|
||||
ln -sf ${D}${base_libdir}/libtinfo.so.5 ${D}${libdir}/libtinfo.so
|
||||
ln -rsf ${D}${base_libdir}/libtinfo.so.5 ${D}${libdir}/libtinfo.so
|
||||
fi
|
||||
|
||||
oe_multilib_header curses.h
|
||||
|
||||
Reference in New Issue
Block a user