# HG changeset patch # User "Yann E. MORIN" # Date 1287581138 -7200 # Node ID ef0142a8ad4cf48464012e3ebd1bf5cf4668923d # Parent fb34f799f05bb7cb15a76f492f481be0a85a4dd0 cc/gcc: fix 128-bit long doubles option Spotted by Arnaud LACOMBE: http://sourceware.org/ml/crossgcc/2010-10/msg00122.html Signed-off-by: "Yann E. MORIN" diff -r fb34f799f05b -r ef0142a8ad4c scripts/build/cc/gcc.sh --- a/scripts/build/cc/gcc.sh Mon Oct 18 21:50:26 2010 +0200 +++ b/scripts/build/cc/gcc.sh Wed Oct 20 15:25:38 2010 +0200 @@ -192,8 +192,8 @@ fi case "${CT_CC_GCC_LDBL_128}" in - Y) extra_config+=("--with-long-double-128");; - M) ;; + y) extra_config+=("--with-long-double-128");; + m) ;; "") extra_config+=("--without-long-double-128");; esac @@ -438,8 +438,8 @@ fi case "${CT_CC_GCC_LDBL_128}" in - Y) extra_config+=("--with-long-double-128");; - M) ;; + y) extra_config+=("--with-long-double-128");; + m) ;; "") extra_config+=("--without-long-double-128");; esac