From 55dfa6d977ef935a30191ab09e0c377f794baaa8 Mon Sep 17 00:00:00 2001 From: Jamie Lenehan Date: Tue, 3 Apr 2007 23:21:39 +0000 Subject: perl: Fix perl build for sh3/sh4. The recent change to support powerpc was wiping out the options that were set for sh3/sh4 - we only need to init the OPTIONS once. --- packages/perl/perl.inc | 11 ++++------- 1 file 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 } -- cgit v1.2.3