diff options
author | Florian Boor <florian.boor@kernelconcepts.de> | 2007-04-04 11:10:15 +0000 |
---|---|---|
committer | Florian Boor <florian.boor@kernelconcepts.de> | 2007-04-04 11:10:15 +0000 |
commit | 9fda8f71205f8a71f9f0faf2fa9a538a2c1df43c (patch) | |
tree | c6ec61e8401c8204e53ff2358ad570732de8ef61 /packages/perl/perl.inc | |
parent | 9912c1fa44adca3374d17b2e432c3eeab8ea6eec (diff) | |
parent | f0f89d19f347b304800e730c69a7fbb86acb9b4b (diff) |
merge of '487b26a10d1dba93c52637b9458e55e24907a81c'
and '5a224ad42c629112a32b3825f26fb2c33dee1b3b'
Diffstat (limited to 'packages/perl/perl.inc')
-rw-r--r-- | packages/perl/perl.inc | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/packages/perl/perl.inc b/packages/perl/perl.inc index f063d0e403..64e548a121 100644 --- a/packages/perl/perl.inc +++ b/packages/perl/perl.inc @@ -46,13 +46,10 @@ do_compile() { if test ${TARGET_ARCH} = "sh3" -o ${TARGET_ARCH} = "sh4"; then OPTIONS="LD=${TARGET_ARCH}-${TARGET_OS}-gcc" fi - - # You must use gcc to link on powerpc also - OPTIONS="" - if test ${TARGET_ARCH} = "powerpc" ; then - OPTIONS="LD=${TARGET_ARCH}-${TARGET_OS}-gcc" - fi - + # You must use gcc to link on powerpc also + if test ${TARGET_ARCH} = "powerpc" ; then + OPTIONS="LD=${TARGET_ARCH}-${TARGET_OS}-gcc" + fi oe_runmake perl $OPTIONS } |