diff options
author | Jens Rehsack <sno@netbsd.org> | 2018-08-22 11:04:23 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-08-23 07:50:00 +0100 |
commit | 454443647a6b161192a510f1b4a1d460b73f9781 (patch) | |
tree | 25105438b8b9b16b3d432bd53f6726f92cd2f22a | |
parent | 01f70f02650221242d4ba629337c882ad28bf9a2 (diff) | |
download | poky-454443647a6b161192a510f1b4a1d460b73f9781.tar.gz |
cpan.bbclass: adopt to recent EU::MM
The modern the time, the improvements in ExtUtils::MakeMaker.
Nowadays, .packlist and perllocal.pod aren't touched anymore when appropriate
flags set during configure stage. Controlling the flags globally avoids
dual-life recipes need share patching.
Further: remove prepending ${PERL_ARCHLIB} in PERL5LIB - it's wrong (search
order is site_lib, vendor_lib, core) - and ${PERL_ARCHLIB} contains core
libpath only ...
(From OE-Core rev: 2e61533e7c1b1cfd49dc771e907207f11a15c44f)
Signed-off-by: Jens Rehsack <sno@netbsd.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/cpan.bbclass | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/classes/cpan.bbclass b/meta/classes/cpan.bbclass index 8e079e0d55..926c6358a6 100644 --- a/meta/classes/cpan.bbclass +++ b/meta/classes/cpan.bbclass | |||
@@ -16,8 +16,7 @@ export PERL_ARCHLIB = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl/${@get_perl_version | |||
16 | export PERLHOSTLIB = "${STAGING_LIBDIR_NATIVE}/perl-native/perl/${@get_perl_version(d)}/" | 16 | export PERLHOSTLIB = "${STAGING_LIBDIR_NATIVE}/perl-native/perl/${@get_perl_version(d)}/" |
17 | 17 | ||
18 | cpan_do_configure () { | 18 | cpan_do_configure () { |
19 | export PERL5LIB="${PERL_ARCHLIB}" | 19 | yes '' | perl ${EXTRA_PERLFLAGS} Makefile.PL INSTALLDIRS=vendor NO_PERLLOCAL=1 NO_PACKLIST=1 ${EXTRA_CPANFLAGS} |
20 | yes '' | perl ${EXTRA_PERLFLAGS} Makefile.PL INSTALLDIRS=vendor ${EXTRA_CPANFLAGS} | ||
21 | 20 | ||
22 | # Makefile.PLs can exit with success without generating a | 21 | # Makefile.PLs can exit with success without generating a |
23 | # Makefile, e.g. in cases of missing configure time | 22 | # Makefile, e.g. in cases of missing configure time |