[oe] [PATCH 1/5] perl: fix PERLCONFIGTARGET for multimach builds, move cpan vars

Khem Raj raj.khem at gmail.com
Sat Dec 25 17:23:02 UTC 2010


On 12/25/2010 2:48 AM, Roman I Khimov wrote:
> Multimachine builds race staging Config_heavy-target.pl to native directory.
> Solve that by changing PERLCONFIGTARGET variable semantics, now it will
> contain $TARGET_SYS. Change perl patch and stage functions accordingly.
>
> Also, move PERLCONFIGTARGET and other target-specific variable settings from
> cpan to cpan-base as I think they're also useful for cpan_build and anywhere
> else cpan-base is needed.
>
> Signed-off-by: Roman I Khimov<khimov at altell.ru>
> ---
>   classes/cpan-base.bbclass                          |   14 ++++++++++++--
>   classes/cpan.bbclass                               |   10 ----------
>   classes/cpan_build.bbclass                         |    4 ++--
>   .../perl/perl-5.10.1/perl-configpm-switch.patch    |    6 +++---
>   recipes/perl/perl-5.8.8/perl-configpm-switch.patch |    6 +++---
>   recipes/perl/perl-native_5.10.1.bb                 |    2 +-
>   recipes/perl/perl-native_5.8.8.bb                  |    2 +-
>   recipes/perl/perl_5.10.1.bb                        |    4 ++--
>   recipes/perl/perl_5.8.8.bb                         |    2 +-
>   9 files changed, 25 insertions(+), 25 deletions(-)
>
> diff --git a/classes/cpan-base.bbclass b/classes/cpan-base.bbclass
> index a04f61c..53621ed 100644
> --- a/classes/cpan-base.bbclass
> +++ b/classes/cpan-base.bbclass
> @@ -32,11 +32,21 @@ def perl_get_libdirs(d):
>
>   def is_target(d):
>       if not bb.data.inherits_class('native', d):
> -        return "yes"
> -    return "no"
> +        return bb.data.expand('${TARGET_SYS}', d)
> +    return ""

not that its wrong but I think you could also use MULTIMACH_ARCH instead 
of TARGET_SYS here





More information about the Openembedded-devel mailing list