mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 09:59:39 +01:00
Move the functionality into autotools and ensure all our Poky recipes are no longer using it. Keep the autools_stage class around for OE compatability but just have it inherit autools. Signed-off-by: Joshua Lock <josh@linux.intel.com>
31 lines
879 B
BlitzBasic
31 lines
879 B
BlitzBasic
require libtool.inc
|
|
|
|
PR = "r20"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/libtool/libtool-${PV}a.tar.gz \
|
|
file://trailingslash.patch;patch=1 \
|
|
file://dolt.m4"
|
|
|
|
PACKAGES =+ "libltdl libltdl-dev libltdl-dbg"
|
|
FILES_${PN} += "${datadir}/aclocal*"
|
|
FILES_libltdl = "${libdir}/libltdl.so.*"
|
|
FILES_libltdl-dev = "${libdir}/libltdl.* ${includedir}/ltdl.h"
|
|
FILES_libltdl-dbg = "${libdir}/.debug/"
|
|
|
|
inherit autotools
|
|
|
|
EXTRA_AUTORECONF = "--exclude=libtoolize"
|
|
|
|
#
|
|
# We want the results of libtool-cross preserved - don't stage anything ourselves.
|
|
#
|
|
SYSROOT_PREPROCESS_FUNCS += "libtool_sysroot_preprocess"
|
|
|
|
libtool_sysroot_preprocess () {
|
|
if [ "${PN}" == "libtool" ]; then
|
|
rm -rf ${SYSROOT_DESTDIR}${STAGING_DIR_TARGET}${bindir}/*
|
|
rm -rf ${SYSROOT_DESTDIR}${STAGING_DIR_TARGET}${datadir}/aclocal/*
|
|
rm -rf ${SYSROOT_DESTDIR}${STAGING_DIR_TARGET}${datadir}/libtool/config/*
|
|
fi
|
|
}
|