diff options
author | Chris Larson <chris_larson@mentor.com> | 2010-07-26 20:18:50 -0700 |
---|---|---|
committer | Chris Larson <chris_larson@mentor.com> | 2010-07-26 20:18:50 -0700 |
commit | 1f9ca3be2cf4364dd86032a89704951b30944705 (patch) | |
tree | 68aea55f77606cb96224e01a422725f790879a20 /recipes/perl/perl_5.8.8.bb | |
parent | 45fc36a32fb23c513833d7e27fb4b9cd8be68fb5 (diff) |
Fix siteinfo issue in perl 5.8.8 and 5.10.1.
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Diffstat (limited to 'recipes/perl/perl_5.8.8.bb')
-rw-r--r-- | recipes/perl/perl_5.8.8.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/perl/perl_5.8.8.bb b/recipes/perl/perl_5.8.8.bb index 29ae66c66b..bc6cc225aa 100644 --- a/recipes/perl/perl_5.8.8.bb +++ b/recipes/perl/perl_5.8.8.bb @@ -62,8 +62,8 @@ do_configure() { # Generate configuration rm -f config.sh-${TARGET_ARCH}-${TARGET_OS} for i in ${WORKDIR}/config.sh \ - ${WORKDIR}/config.sh-${@siteinfo_get_bits(d)} \ - ${WORKDIR}/config.sh-${@siteinfo_get_bits(d)}-${@siteinfo_get_endianess(d)}; do + ${WORKDIR}/config.sh-${SITEINFO_BITS} \ + ${WORKDIR}/config.sh-${SITEINFO_BITS}-${SITEINFO_ENDIANNESS}; do cat $i >> config.sh-${TARGET_ARCH}-${TARGET_OS} done |