From: Jamie Lenehan Date: Tue, 3 Apr 2007 23:21:39 +0000 (+0000) Subject: perl: Fix perl build for sh3/sh4. The recent change to support powerpc was X-Git-Url: https://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55dfa6d977ef935a30191ab09e0c377f794baaa8;p=openembedded.git 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. --- 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 }