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.
This commit is contained in:
Yann E. MORIN" 2009-10-21 23:20:30 +02:00
parent 7bf7b7ff9a
commit da0ff22e6c

View File

@ -10,8 +10,4 @@ CT_DoArchTupleValues() {
uClibc,y) CT_TARGET_SYS=uclibcgnueabi;;
*,y) CT_TARGET_SYS=eabi;;
esac
# In case we're EABI, do *not* specify any ABI!
# which means, either we do not have an ABI specified, or we're not EABI.
CT_TestOrAbort "Internal error: CT_ARCH_ABI should not be set for EABI build." -z "${CT_ARCH_ABI}" -o -z "${CT_ARCH_ARM_EABI}"
}