mirror of
https://git.yoctoproject.org/poky
synced 2026-02-14 04:33:03 +01:00
0001-automake-Add-default-libtool_tag-to-cppasm.patch was upstreamed in 1.16[1]. 0003-build-fix-race-in-parallel-builds.patch wasn't directly applied, but a fix for the same problem was merged in 1.17[2]. [1] automake dc67b18d "automake: Add default libtool_tag to cppasm" [2] automake 5d022858 "build: fix race in parallel builds" (From OE-Core rev: 386feebe8221c5ef0f87d371dc3e79bfdee1a3bb) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
41 lines
1.2 KiB
BlitzBasic
41 lines
1.2 KiB
BlitzBasic
require automake.inc
|
|
LICENSE = "GPL-2.0-only"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
|
|
DEPENDS:class-native = "autoconf-native"
|
|
|
|
NAMEVER = "${@oe.utils.trim_version("${PV}", 2)}"
|
|
|
|
RDEPENDS:${PN} += "\
|
|
autoconf \
|
|
perl \
|
|
perl-module-bytes \
|
|
perl-module-data-dumper \
|
|
perl-module-strict \
|
|
perl-module-text-parsewords \
|
|
perl-module-thread-queue \
|
|
perl-module-threads \
|
|
perl-module-vars "
|
|
|
|
RDEPENDS:${PN}:class-native = "autoconf-native hostperl-runtime-native"
|
|
|
|
SRC_URI += "\
|
|
file://0002-automake-Update-for-python.m4-to-respect-libdir.patch \
|
|
file://0004-Add-a-new-distro-feature-ptest.patch \
|
|
file://0006-automake-Remove-delays-in-configure-scripts-using-au.patch \
|
|
file://0001-configure-don-t-report-error-when-the-path-of-Perl-c.patch \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "397767d4db3018dd4440825b60c64258b636eaf6bf99ac8b0897f06c89310acd"
|
|
|
|
PERL = "${USRBINPATH}/perl"
|
|
PERL:class-native = "${USRBINPATH}/env perl"
|
|
PERL:class-nativesdk = "${USRBINPATH}/env perl"
|
|
|
|
CACHED_CONFIGUREVARS += "ac_cv_path_PERL='${PERL}'"
|
|
|
|
do_install:append () {
|
|
install -d ${D}${datadir}
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|