mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
A issue was fixed in target recipe with commit: 95893404
[
quilt: added ac_cv_path_BASH to CACHED_CONFIGUREVARS
On Fedora 17, bash has moved to /usr/bin/bash and the configure process finds it
on the host machine there, this ensures that it is set correctly for the target.
[YOCTO #2363]
Signed-off-by: Saul Wold <sgw@linux.intel.com>
]
But it's also impacting native package in the case that the sstate is used
between Fedora 17(or later) and other hosts.
(From OE-Core rev: 34bd53c657f82a402723fcf2640b0511a68b6af5)
Signed-off-by: Ming Liu <ming.liu@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
564 B
BlitzBasic
17 lines
564 B
BlitzBasic
require quilt-${PV}.inc
|
|
inherit gettext
|
|
RDEPENDS_${PN} += "patch diffstat bzip2 util-linux"
|
|
SRC_URI += "file://aclocal.patch \
|
|
file://gnu_patch_test_fix_target.patch \
|
|
"
|
|
|
|
# fix build-distro specific perl path in the target perl scripts
|
|
do_install_append() {
|
|
for perlscript in ${D}${datadir}/quilt/scripts/remove-trailing-ws ${D}${datadir}/quilt/scripts/dependency-graph ${D}${datadir}/quilt/scripts/edmail ${D}${bindir}/guards
|
|
do
|
|
if [ -f $perlscript ]; then
|
|
sed -i -e '1s,#!.*perl,#! ${USRBINPATH}/env perl,' $perlscript
|
|
fi
|
|
done
|
|
}
|