summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-10-21 21:20:30 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2009-10-21 21:20:30 (GMT)
commitda0ff22e6ccbe1d7f914cd05085295ec1af81c68 (patch)
tree2e8254e22c166059f3aea6646f554dfccf443162
parent7bf7b7ff9ab312a13c4d4786f5dbc16635c6957c (diff)
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.
-rw-r--r--scripts/build/arch/arm.sh4
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/build/arch/arm.sh b/scripts/build/arch/arm.sh
index a551c61..a394cc7 100644
--- a/scripts/build/arch/arm.sh
+++ b/scripts/build/arch/arm.sh
@@ -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}"
}