mirror of
https://github.com/libretro/libretro-super
synced 2025-01-05 21:54:33 +00:00
Fixups to some conditional bracket closings
This commit is contained in:
parent
2bde8b200c
commit
0f5d02dde3
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user