[oe-commits] Tom Rini : perl: Use CCLD not ${TARGET_SYS}-gcc in do_compile

git version control git at git.openembedded.org
Thu Sep 2 23:13:10 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: a5ee14715405dd220a3ca4afa567134158dae4be
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=a5ee14715405dd220a3ca4afa567134158dae4be

Author: Tom Rini <tom_rini at mentor.com>
Date:   Thu Sep  2 16:12:20 2010 -0700

perl: Use CCLD not ${TARGET_SYS}-gcc in do_compile

It's possible that CCLD != ${TARGET_SYS}-gcc once everything is
evaluated and CCLD is for when you're using CC for LD.

Signed-off-by: Tom Rini <tom_rini at mentor.com>

---

 recipes/perl/perl_5.10.1.bb |    4 ++--
 recipes/perl/perl_5.8.8.bb  |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/recipes/perl/perl_5.10.1.bb b/recipes/perl/perl_5.10.1.bb
index a09c59d..c375512 100644
--- a/recipes/perl/perl_5.10.1.bb
+++ b/recipes/perl/perl_5.10.1.bb
@@ -5,7 +5,7 @@ LICENSE = "Artistic|GPL"
 PRIORITY = "optional"
 # We need gnugrep (for -I)
 DEPENDS = "virtual/db perl-native grep-native"
-PR = "r9"
+PR = "r10"
 
 # Not tested enough
 DEFAULT_PREFERENCE = "-1"
@@ -104,7 +104,7 @@ do_compile() {
             sed -i -e 's|/usr/include|${STAGING_INCDIR}|g' ext/Errno/Errno_pm.PL
         fi
         cd Cross
-        oe_runmake perl LD="${TARGET_SYS}-gcc"
+        oe_runmake perl LD="${CCLD}"
 }
 do_install() {
 	oe_runmake install
diff --git a/recipes/perl/perl_5.8.8.bb b/recipes/perl/perl_5.8.8.bb
index c8ad895..f106e17 100644
--- a/recipes/perl/perl_5.8.8.bb
+++ b/recipes/perl/perl_5.8.8.bb
@@ -5,7 +5,7 @@ LICENSE = "Artistic|GPL"
 PRIORITY = "optional"
 # We need gnugrep (for -I)
 DEPENDS = "virtual/db perl-native grep-native"
-PR = "r35"
+PR = "r36"
 
 # Major part of version
 PVM = "5.8"
@@ -108,7 +108,7 @@ do_compile() {
                    -e 's|$Config{cppflags}||' ext/Errno/Errno_pm.PL
         fi
         cd Cross
-        oe_runmake perl LD="${TARGET_SYS}-gcc"
+        oe_runmake perl LD="${CCLD}"
 }
 do_install() {
 	oe_runmake install





More information about the Openembedded-commits mailing list