summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/configure b/tools/configure
index fcdd2dd236..1ed4d22c79 100755
--- a/tools/configure
+++ b/tools/configure
@@ -283,7 +283,7 @@ arm9tdmicc () {
arm940tbecc () {
findarmgcc
GCCOPTS="$CCOPTS -mbig-endian -mcpu=arm940t"
- if test "ARG_ARM_EABI" != "1"; then
+ if test "$ARG_ARM_EABI" != "1"; then
GCCOPTS="$GCCOPTS -mlong-calls"
fi
GCCOPTIMIZE="-fomit-frame-pointer"
@@ -293,7 +293,7 @@ arm940tbecc () {
arm940tcc () {
findarmgcc
GCCOPTS="$CCOPTS -mcpu=arm940t"
- if test "ARG_ARM_EABI" != "1"; then
+ if test "$ARG_ARM_EABI" != "1"; then
GCCOPTS="$GCCOPTS -mlong-calls"
fi
GCCOPTIMIZE="-fomit-frame-pointer"
@@ -303,7 +303,7 @@ arm940tcc () {
arm946cc () {
findarmgcc
GCCOPTS="$CCOPTS -mcpu=arm9e"
- if test "ARG_ARM_EABI" != "1"; then
+ if test "$ARG_ARM_EABI" != "1"; then
GCCOPTS="$GCCOPTS -mlong-calls"
fi
GCCOPTIMIZE="-fomit-frame-pointer"
@@ -313,7 +313,7 @@ arm946cc () {
arm926ejscc () {
findarmgcc
GCCOPTS="$CCOPTS -mcpu=arm926ej-s"
- if test "ARG_ARM_EABI" != "1"; then
+ if test "$ARG_ARM_EABI" != "1"; then
GCCOPTS="$GCCOPTS -mlong-calls"
fi
GCCOPTIMIZE="-fomit-frame-pointer"
@@ -323,7 +323,7 @@ arm926ejscc () {
arm1136jfscc () {
findarmgcc
GCCOPTS="$CCOPTS -mcpu=arm1136jf-s"
- if test "$modelname" != "gigabeats" -a "ARG_ARM_EABI" != "1"; then
+ if test "$modelname" != "gigabeats" -a "$ARG_ARM_EABI" != "1"; then
GCCOPTS="$GCCOPTS -mlong-calls"
fi
GCCOPTIMIZE="-fomit-frame-pointer"
@@ -333,7 +333,7 @@ arm1136jfscc () {
arm1176jzscc () {
findarmgcc
GCCOPTS="$CCOPTS -mcpu=arm1176jz-s"
- if test "ARG_ARM_EABI" != "1"; then
+ if test "$ARG_ARM_EABI" != "1"; then
GCCOPTS="$GCCOPTS -mlong-calls"
fi
GCCOPTIMIZE="-fomit-frame-pointer"