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 11:09:40 +0100 |
commit | 306435507c4790ec44f30cd3c7fa7d340b441ec4 (patch) | |
tree | dfcf587aeae9867e4a7769afe36fb2290e37bfe5 | |
parent | a734431a7ce36a679dff81822c2fba6f07a09e88 (diff) | |
download | openembedded-core-306435507c4790ec44f30cd3c7fa7d340b441ec4.tar.gz openembedded-core-306435507c4790ec44f30cd3c7fa7d340b441ec4.tar.bz2 openembedded-core-306435507c4790ec44f30cd3c7fa7d340b441ec4.zip |
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)
Signed-off-by: Jens Rehsack <sno@netbsd.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 () { } cpan_build_do_compile () { - perl Build verbose=1 + perl Build --perl "${bindir}/perl" verbose=1 } cpan_build_do_install () { |