diff options
author | J. S. <schonm@gmail.com> | 2024-10-28 08:40:43 -0400 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2025-01-16 09:17:32 -0500 |
commit | 74b08dcbb1d0f4600527602804544c9d63697ebc (patch) | |
tree | 46e91f440ddab4a49a8df53a67e6f6477255c54a | |
parent | 6efd2325c9cb388c1f24f1c30079ee6c7db964fa (diff) | |
download | meta-openembedded-74b08dcbb1d0f4600527602804544c9d63697ebc.tar.gz |
libmodule-build-tiny-perl: fix QA Issue: TMPDIR [buildpaths]
Signed-off-by: Jason Schonberg <schonm@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit c395f5e477b94fafb509e1348e4fb09e0e56be45)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.048.bb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.048.bb b/meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.048.bb index 8601850076..d41b4ff284 100644 --- a/meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.048.bb +++ b/meta-perl/recipes-perl/libmodule/libmodule-build-tiny-perl_0.048.bb | |||
@@ -21,6 +21,13 @@ S = "${WORKDIR}/Module-Build-Tiny-${PV}" | |||
21 | 21 | ||
22 | inherit cpan_build ptest-perl | 22 | inherit cpan_build ptest-perl |
23 | 23 | ||
24 | do_install:append() { | ||
25 | sed -i \ | ||
26 | -e 's|${TMPDIR}||g' \ | ||
27 | `find ${D}/usr/lib/perl5 -type f -name .packlist` | ||
28 | } | ||
29 | |||
30 | |||
24 | RDEPENDS:${PN} += " \ | 31 | RDEPENDS:${PN} += " \ |
25 | libextutils-config-perl \ | 32 | libextutils-config-perl \ |
26 | libextutils-helpers-perl \ | 33 | libextutils-helpers-perl \ |