1require libtool-${PV}.inc 2 3FILESEXTRAPATHS =. "${FILE_DIRNAME}/libtool:" 4 5SRC_URI += "file://fixinstall.patch" 6 7inherit nativesdk 8 9S = "${WORKDIR}/libtool-${PV}" 10FILES:${PN} += "${datadir}/libtool/*" 11 12do_configure:prepend () { 13 # Remove any existing libtool m4 since old stale versions would break 14 # any upgrade 15 rm -f ${STAGING_DATADIR}/aclocal/libtool.m4 16 rm -f ${STAGING_DATADIR}/aclocal/lt*.m4 17} 18 19do_install () { 20 autotools_do_install 21 install -d ${D}${bindir}/ 22 install -m 0755 libtool ${D}${bindir}/ 23} 24 25SYSROOT_PREPROCESS_FUNCS += "libtoolnativesdk_sysroot_preprocess" 26 27libtoolnativesdk_sysroot_preprocess () { 28 install -d ${SYSROOT_DESTDIR}${bindir_crossscripts}/ 29 install -m 755 ${D}${bindir}/libtool ${SYSROOT_DESTDIR}${bindir_crossscripts}/libtool 30} 31