about summary refs log tree commit diff
path: root/ports/sysdeps/arm/configure.in
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2012-11-21 21:04:33 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-11-21 21:04:33 +0000
commita451ee33afe03b8c16a0d166be380182b9587f59 (patch)
tree65cacb4681b8fdf280d16a3852a3f005d078435b /ports/sysdeps/arm/configure.in
parent988d15f5bdcf1be7d54b8602509d67a6aabb17e0 (diff)
downloadglibc-a451ee33afe03b8c16a0d166be380182b9587f59.tar.gz
glibc-a451ee33afe03b8c16a0d166be380182b9587f59.tar.xz
glibc-a451ee33afe03b8c16a0d166be380182b9587f59.zip
Avoid $(shell) in determining default ARM ABI.
Diffstat (limited to 'ports/sysdeps/arm/configure.in')
-rw-r--r--ports/sysdeps/arm/configure.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/ports/sysdeps/arm/configure.in b/ports/sysdeps/arm/configure.in
index 7e91332591..6073d0ee86 100644
--- a/ports/sysdeps/arm/configure.in
+++ b/ports/sysdeps/arm/configure.in
@@ -40,4 +40,7 @@ AC_CACHE_CHECK([whether the compiler is using the ARM hard-float ABI],
   ], libc_cv_arm_pcs_vfp=yes, libc_cv_arm_pcs_vfp=no)])
 if test $libc_cv_arm_pcs_vfp = yes; then
   AC_DEFINE(HAVE_ARM_PCS_VFP)
+  echo "default-abi := hard" > default-abi.make
+else
+  echo "default-abi := soft" > default-abi.make
 fi