Nothing should ever be poking files directly into the staging/sysroot
directories, it should always go through ${D}.
This patch ensures this recipe does this and hence fixes various
potential build issues such as lack of sstate tracking of files.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
do_install() {
autotools_do_install
- oe_libinstall -so libtcl8.5 ${STAGING_LIBDIR}
+ oe_libinstall -so libtcl8.5 ${D}${libdir}
ln -sf ./tclsh8.5 ${D}${bindir}/tclsh
sed -i "s+${WORKDIR}+${STAGING_INCDIR}+g" tclConfig.sh
sed -i "s,-L${libdir},-L=${libdir},g" tclConfig.sh
cd ..
for dir in compat generic unix
do
- install -d ${STAGING_INCDIR}/tcl${PV}/$dir
- install -m 0644 $dir/*.h ${STAGING_INCDIR}/tcl${PV}/$dir/
+ install -d ${D}${includedir}/tcl${PV}/$dir
+ install -m 0644 $dir/*.h ${D}${includedir}/tcl${PV}/$dir/
done
}