mirror of
https://git.yoctoproject.org/poky
synced 2026-06-16 06:00:02 +00:00
f2a5850a80
I can't see any reason this configure like for a sysroot is needed in the native config and it doesn't make any sense. Drop it as obsolete/unneeded. (From OE-Core rev: 67aea7bb485efe6187a255d74c100890333074f6) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
372 B
BlitzBasic
19 lines
372 B
BlitzBasic
require libtool-${PV}.inc
|
|
|
|
DEPENDS = ""
|
|
|
|
inherit native
|
|
|
|
do_configure:prepend () {
|
|
# Remove any existing libtool m4 since old stale versions would break
|
|
# any upgrade
|
|
rm -f ${STAGING_DATADIR}/aclocal/libtool.m4
|
|
rm -f ${STAGING_DATADIR}/aclocal/lt*.m4
|
|
}
|
|
|
|
do_install () {
|
|
autotools_do_install
|
|
install -d ${D}${bindir}/
|
|
install -m 0755 libtool ${D}${bindir}/libtool
|
|
}
|