From f9f9239fa2f1c33e17ed3b0e830099f64a70bd37 Mon Sep 17 00:00:00 2001 From: Timothy J Fontaine Date: Sat, 7 Dec 2013 11:49:49 -0800 Subject: [PATCH] build: older pythons don't support ternary if --- configure | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 5e9e7fc11db..b950bdcb7b1 100755 --- 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())