mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 03:03:02 +01:00
* Set CONFIG_SHELL="/bin/bash" * Add bash to RDEPENDS_libtool We had already set CONFIG_SHELL="/bin/bash" for libtool-native, libtool-cross and nativesdk-libtool, now also set for target libtool, if we don't set this, libtool would use /bin/sh, /bin/bash, /bin/ksh or /bin/sh5 according to the host, and the build is undetermined, this patch can fix the problem, libtool is a development tool, rdepends on bash should not cause toubles (for example, the size of the image) Have tried to set CONFIG_SHELL="/bin/sh" (/bin/sh -> dash), but there is still a few bashsim in the output libtool. (From OE-Core rev: c07f09b1b261b0d480544a6100f6a83835c62019) Signed-off-by: Robert Yang <liezhi.yang@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
42 lines
1.6 KiB
BlitzBasic
42 lines
1.6 KiB
BlitzBasic
require libtool-${PV}.inc
|
|
|
|
PR = "${INC_PR}.1"
|
|
PACKAGES = ""
|
|
SRC_URI += "file://prefix.patch"
|
|
SRC_URI += "file://fixinstall.patch"
|
|
|
|
datadir = "${STAGING_DIR_TARGET}${target_datadir}"
|
|
|
|
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 () {
|
|
install -d ${D}${bindir_crossscripts}/
|
|
install -m 0755 ${HOST_SYS}-libtool ${D}${bindir_crossscripts}/${HOST_SYS}-libtool
|
|
install -d ${D}${bindir_crossscripts}/
|
|
install -m 0755 libtoolize ${D}${bindir_crossscripts}/
|
|
install -d ${D}${target_datadir}/libtool/config/
|
|
install -d ${D}${target_datadir}/aclocal/
|
|
install -c ${S}/libltdl/config/compile ${D}${target_datadir}/libtool/config/
|
|
install -c ${S}/libltdl/config/config.guess ${D}${target_datadir}/libtool/config/
|
|
install -c ${S}/libltdl/config/config.sub ${D}${target_datadir}/libtool/config/
|
|
install -c ${S}/libltdl/config/depcomp ${D}${target_datadir}/libtool/config/
|
|
install -c ${S}/libltdl/config/install-sh ${D}${target_datadir}/libtool/config/
|
|
install -c ${S}/libltdl/config/missing ${D}${target_datadir}/libtool/config/
|
|
install -c -m 0644 ${S}/libltdl/config/ltmain.sh ${D}${target_datadir}/libtool/config/
|
|
install -c -m 0644 ${S}/libltdl/m4/*.m4 ${D}${target_datadir}/aclocal/
|
|
}
|
|
|
|
SYSROOT_PREPROCESS_FUNCS += "libtoolcross_sysroot_preprocess"
|
|
|
|
libtoolcross_sysroot_preprocess () {
|
|
sysroot_stage_dir ${D}${bindir_crossscripts} ${SYSROOT_DESTDIR}${bindir_crossscripts}
|
|
sysroot_stage_dir ${D}${target_datadir} ${SYSROOT_DESTDIR}${target_datadir}
|
|
}
|
|
|
|
SSTATE_SCAN_FILES += "libtoolize *-libtool"
|