build: older pythons don't support ternary if
authorTimothy J Fontaine <tjfontaine@gmail.com>
Sat, 7 Dec 2013 19:49:49 +0000 (11:49 -0800)
committerTimothy J Fontaine <tjfontaine@gmail.com>
Sat, 7 Dec 2013 19:49:49 +0000 (11:49 -0800)
configure

index 5e9e7fc..b950bdc 100755 (executable)
--- a/configure
+++ b/configure
@@ -428,8 +428,10 @@ def compiler_version():
 def configure_arm(o):
   if options.arm_float_abi:
     arm_float_abi = options.arm_float_abi
+  elif is_arm_hard_float_abi():
+    arm_float_abi = 'hard'
   else:
-    arm_float_abi = 'hard' if is_arm_hard_float_abi() else 'default'
+    'default'
   o['variables']['armv7'] = int(is_arch_armv7())
   o['variables']['arm_fpu'] = 'vfpv3'  # V8 3.18 no longer supports VFP2.
   o['variables']['arm_neon'] = int(is_arm_neon())