diff options
author | Jens Rehsack <rehsack@gmail.com> | 2018-05-28 20:55:09 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-15 17:56:24 +0100 |
commit | a34850f703a26b8819c978b841ca210a8b007e48 (patch) | |
tree | e9421c2f2f9ef057ebf2b9106ae83f503b0ad3f8 /meta | |
parent | 73daeda22d5d67d5f67d6f9eaf64aeac451148f7 (diff) | |
download | poky-a34850f703a26b8819c978b841ca210a8b007e48.tar.gz |
cpan_build.bbclass: tell Module::Build the replacement
Instead of patching Module::Build, maybe Module::Build::Tiny and all other
similar tools, use the official way to tell them which is the target perl
on target.
(From OE-Core rev: f3925216b06ff7fbe21989210f8eb11e16be6631)
(From OE-Core rev: 306435507c4790ec44f30cd3c7fa7d340b441ec4)
Signed-off-by: Jens Rehsack <sno@netbsd.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/cpan_build.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/cpan_build.bbclass b/meta/classes/cpan_build.bbclass index fac074d610..9a2ad895ef 100644 --- a/meta/classes/cpan_build.bbclass +++ b/meta/classes/cpan_build.bbclass | |||
@@ -30,7 +30,7 @@ cpan_build_do_configure () { | |||
30 | } | 30 | } |
31 | 31 | ||
32 | cpan_build_do_compile () { | 32 | cpan_build_do_compile () { |
33 | perl Build verbose=1 | 33 | perl Build --perl "${bindir}/perl" verbose=1 |
34 | } | 34 | } |
35 | 35 | ||
36 | cpan_build_do_install () { | 36 | cpan_build_do_install () { |