arch/arm: no need to check for the ABI option
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Oct 21 23:20:30 2009 +0200 (2009-10-21)
changeset 1595882122458d2d
parent 1594 9c0766bed0d2
child 1596 ca1bf632da51
arch/arm: no need to check for the ABI option

The ABI option can not be set if EABI was selected,
so no need to check for it.
scripts/build/arch/arm.sh
     1.1 --- a/scripts/build/arch/arm.sh	Wed Oct 21 18:22:05 2009 +0200
     1.2 +++ b/scripts/build/arch/arm.sh	Wed Oct 21 23:20:30 2009 +0200
     1.3 @@ -10,8 +10,4 @@
     1.4          uClibc,y)   CT_TARGET_SYS=uclibcgnueabi;;
     1.5          *,y)        CT_TARGET_SYS=eabi;;
     1.6      esac
     1.7 -
     1.8 -    # In case we're EABI, do *not* specify any ABI!
     1.9 -    # which means, either we do not have an ABI specified, or we're not EABI.
    1.10 -    CT_TestOrAbort "Internal error: CT_ARCH_ABI should not be set for EABI build." -z "${CT_ARCH_ABI}" -o -z "${CT_ARCH_ARM_EABI}"
    1.11  }