Fixups to some conditional bracket closings

This commit is contained in:
twinaphex 2013-07-13 18:19:24 +02:00
parent 2bde8b200c
commit 0f5d02dde3

View File

@ -16,23 +16,23 @@ echo "Compiler: $COMPILER"
platformvar=armv
if [ "$ARM_NEON"]; then
if [ "$ARM_NEON" ]; then
echo "=== ARM NEON opts enabled... ==="
platformvar += -neon
fi
if [ "$CORTEX_A8"]; then
if [ "$CORTEX_A8" ]; then
echo "=== Cortex A8 opts enabled... ==="
platformvar += -cortexa8
fi
if [ "$CORTEX_A9"]; then
if [ "$CORTEX_A9" ]; then
echo "=== Cortex A9 opts enabled... ==="
platformvar += -cortexa9
fi
if [ "$ARM_HARDFLOAT"]; then
if [ "$ARM_HARDFLOAT" ]; then
echo "=== ARM hardfloat ABI enabled... ==="
platformvar += -hardfloat
fi
if [ "$ARM_SOFTFLOAT"]; then
if [ "$ARM_SOFTFLOAT" ]; then
echo "=== ARM softfloat ABI enabled... ==="
platformvar += -softfloat
fi