summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-03-20 01:38:19 -0700
committerKhem Raj <raj.khem@gmail.com>2022-03-21 08:25:11 -0700
commit302134bb59d9b848f763dae5034f582d722e9f17 (patch)
tree35367b9931104abb65fdede923a81ffa44b47dd7
parentf46265250f37b3bd5b7277465f4cf132bdbaf8be (diff)
downloadmeta-openembedded-302134bb59d9b848f763dae5034f582d722e9f17.tar.gz
io-compress-lzma-perl,io-compress-perl: Do not mark allarch
These recipes are using target perl install during build so they can not be allarch, the issue becomes evident when libdir for target the native build hosts do not match e.g. ppc64 where target libdir is usr/lib64 then the do_configure starts to fail because it can not find Config_heavy-target.pl script which is part of tatget perl install and allarch recipes seems to assume libdir defaults to /usr/lib when accessing it. I think it can be fixed by perhaps building the missing perl files into perl native perhaps. Signed-off-by: Khem Raj <raj.khem@gmail.com> Cc: Hongxu Jia <hongxu.jia@windriver.com> Cc: Tim "moto-timo" Orling <ticotimo@gmail.com>
-rw-r--r--meta-perl/recipes-perl/libio/io-compress-lzma-perl_2.096.bb2
-rw-r--r--meta-perl/recipes-perl/libio/io-compress-perl_2.096.bb2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta-perl/recipes-perl/libio/io-compress-lzma-perl_2.096.bb b/meta-perl/recipes-perl/libio/io-compress-lzma-perl_2.096.bb
index 9655176a8..3b8ce8d02 100644
--- a/meta-perl/recipes-perl/libio/io-compress-lzma-perl_2.096.bb
+++ b/meta-perl/recipes-perl/libio/io-compress-lzma-perl_2.096.bb
@@ -19,6 +19,6 @@ RDEPENDS:${PN} += "io-compress-perl"
19 19
20S = "${WORKDIR}/IO-Compress-Lzma-${PV}" 20S = "${WORKDIR}/IO-Compress-Lzma-${PV}"
21 21
22inherit cpan allarch 22inherit cpan
23 23
24BBCLASSEXTEND = "native" 24BBCLASSEXTEND = "native"
diff --git a/meta-perl/recipes-perl/libio/io-compress-perl_2.096.bb b/meta-perl/recipes-perl/libio/io-compress-perl_2.096.bb
index ccc78d007..c00d8945b 100644
--- a/meta-perl/recipes-perl/libio/io-compress-perl_2.096.bb
+++ b/meta-perl/recipes-perl/libio/io-compress-perl_2.096.bb
@@ -19,6 +19,6 @@ RDEPENDS:${PN} += "compress-raw-zlib-perl"
19 19
20S = "${WORKDIR}/IO-Compress-${PV}" 20S = "${WORKDIR}/IO-Compress-${PV}"
21 21
22inherit cpan allarch 22inherit cpan
23 23
24BBCLASSEXTEND = "native" 24BBCLASSEXTEND = "native"