From 946b9fad03ab95ce86f0f285058c0580fa8e7011 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 27 Feb 2014 23:55:04 -0500 Subject: fix copy-and-paste error in configure's IEEE double check for sh --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 572ea640..6c02b4a4 100755 --- a/configure +++ b/configure @@ -428,7 +428,7 @@ if trycppif __SH_FPU_ANY__ ; then # rather than using softfloat when the fpu is present but only # supports single precision. Reject them. printf "checking whether compiler's double type is IEEE double... " -echo 'typedef char dblcheck[(int)sizeof(double)-5];' >> "$tmpc" +echo 'typedef char dblcheck[(int)sizeof(double)-5];' > "$tmpc" if $CC $CFLAGS_C99FSE $CPPFLAGS $CFLAGS -c -o /dev/null "$tmpc" >/dev/null 2>&1 ; then printf "yes\n" else -- cgit v1.2.1