From: Richard Purdie Date: Mon, 17 Mar 2008 20:43:12 +0000 (+0000) Subject: cpan.bbclass: Run the install routine as the staging task instead of install when... X-Git-Tag: Release-2010-05/1~7399 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6cc27ed49193fa0314d1f7b7ba0463a46f7dbc81;p=openembedded.git cpan.bbclass: Run the install routine as the staging task instead of install when run as part of a native build --- diff --git a/classes/cpan.bbclass b/classes/cpan.bbclass index 5a0b4a5c92..506d4c4c81 100644 --- a/classes/cpan.bbclass +++ b/classes/cpan.bbclass @@ -50,7 +50,16 @@ cpan_do_compile () { } cpan_do_install () { - oe_runmake install_vendor + if [ ${@is_target(d)} == "yes" ]; then + oe_runmake install_vendor + fi +} + +cpan_do_stage () { + if [ ${@is_target(d)} == "no" ]; then + oe_runmake install_vendor + fi } + -EXPORT_FUNCTIONS do_configure do_compile do_install +EXPORT_FUNCTIONS do_configure do_compile do_install do_stage