Files
meta-external-toolchain/core/recipes-core/ncurses/ncurses_%.bbappend
Christopher Larson 51c7d12402 ncurses: work around ownership problem
Due to a previous workaround, the external gcc/g++ is run outside of pseudo
context. The ncurses install target re-links the libraries directly into ${D},
so we need to make sure the ownership on those files is correct.

JIRA: SB-4185

Signed-off-by: Christopher Larson <kergoth@gmail.com>
2015-04-24 18:28:04 -07:00

7 lines
308 B
Plaintext

# Work around the fact that gcc/g++ is not run under pseudo at the moment to
# bypass a different bug. Ncurses links the libs directly into place in the
# destination, so we need to correct the ownership here.
do_install_append () {
chown root:root ${D}${base_libdir}/lib*.so.* ${D}${libdir}/lib*.so.*
}