diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-02-27 23:55:04 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-02-27 23:55:04 -0500 |
commit | 946b9fad03ab95ce86f0f285058c0580fa8e7011 (patch) | |
tree | 97f7f7680ebfaafc19cd6236c0d27ee5c370721a | |
parent | b1683a1d6a4391ffef6ce12be9aa172d0f4f59bc (diff) | |
download | musl-946b9fad03ab95ce86f0f285058c0580fa8e7011.tar.gz musl-946b9fad03ab95ce86f0f285058c0580fa8e7011.tar.xz musl-946b9fad03ab95ce86f0f285058c0580fa8e7011.zip |
fix copy-and-paste error in configure's IEEE double check for sh
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
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 |