Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1 | inherit perlnative cpan-base |
| 2 | |
| 3 | # Env var which tells perl if it should use host (no) or target (yes) settings |
| 4 | export PERLCONFIGTARGET = "${@is_target(d)}" |
Andrew Geissler | 5082cc7 | 2023-09-11 08:41:39 -0400 | [diff] [blame] | 5 | export PERL_INC = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl5/${@get_perl_version(d)}/${@get_perl_arch(d)}/CORE" |
| 6 | export PERL_LIB = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl5/${@get_perl_version(d)}" |
| 7 | export PERL_ARCHLIB = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl5/${@get_perl_version(d)}/${@get_perl_arch(d)}" |
| 8 | |
| 9 | # The perl symbols CPPSTDIN and CPPRUN embed the sysroot into the |
| 10 | # binaries, work needed to remove this |
| 11 | INSANE_SKIP:${PN}-dbg += "buildpaths" |