From: Alexander Kanavin Date: Sat, 4 Dec 2021 07:13:01 +0000 (+0100) Subject: perlcross: do not copy ${S}/patches into sysroot X-Git-Tag: uninative-3.5~633 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=52f4ca245a6a5e99538bcd052a27bbe936bc7e08;p=openembedded-core.git perlcross: do not copy ${S}/patches into sysroot That is not actually a part of the source tree, and will clash with perl's own ${S}/patches. Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/perl-cross/perlcross_1.3.6.bb b/meta/recipes-devtools/perl-cross/perlcross_1.3.6.bb index 2759ef8a53..b8e1f846d7 100644 --- a/meta/recipes-devtools/perl-cross/perlcross_1.3.6.bb +++ b/meta/recipes-devtools/perl-cross/perlcross_1.3.6.bb @@ -34,6 +34,7 @@ do_compile () { do_install:class-native() { mkdir -p ${D}/${datadir}/perl-cross/ cp -rf ${S}/* ${D}/${datadir}/perl-cross/ + rm -rf ${D}/${datadir}/perl-cross/patches/ } BBCLASSEXTEND = "native"