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" <yann.morin.1998@anciens.enib.fr>
This commit is contained in:
Yann E. MORIN" 2010-10-20 15:25:38 +02:00
parent 8b0fb989fc
commit 2b912ba840

View File

@ -192,8 +192,8 @@ do_cc_core() {
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 @@ do_cc() {
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