diff options
author | Rich Felker <dalias@aerifal.cx> | 2014-02-28 00:09:55 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014-02-28 00:09:55 -0500 |
commit | 3d7f5c363e27426a3977bc6fa0436e92653eccf1 (patch) | |
tree | 8830ccaf07d0a0fe5aea61c0306245d6474653c9 /configure | |
parent | 946b9fad03ab95ce86f0f285058c0580fa8e7011 (diff) | |
download | musl-3d7f5c363e27426a3977bc6fa0436e92653eccf1.tar.gz musl-3d7f5c363e27426a3977bc6fa0436e92653eccf1.tar.xz musl-3d7f5c363e27426a3977bc6fa0436e92653eccf1.zip |
fix missing CFLAGS in configure test for float on sh
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 6c02b4a4..434242b4 100755 --- a/configure +++ b/configure @@ -423,7 +423,7 @@ test "$ARCH" = "microblaze" && trycppif __MICROBLAZEEL__ "$t" \ if test "$ARCH" = "sh" ; then trycppif __BIG_ENDIAN__ "$t" && SUBARCH=${SUBARCH}eb -if trycppif __SH_FPU_ANY__ ; then +if trycppif __SH_FPU_ANY__ "$t" ; then # Some sh configurations are broken and replace double with float # rather than using softfloat when the fpu is present but only # supports single precision. Reject them. |