diff options
author | Dan Amelang <dan@amelang.net> | 2006-12-02 11:02:36 -0800 |
---|---|---|
committer | Dan Amelang <dan@amelang.net> | 2006-12-02 11:08:48 -0800 |
commit | 392f27bf2b210aec6f511e5dba890d5f4c3b8802 (patch) | |
tree | 31f29427d872a7a2b0893841e4776e7b1b243408 /acinclude.m4 | |
parent | 3dbe468fd6071adfba5f608da788502f1840af36 (diff) |
[configure] Add -a option to grep calls in AX_C_FLOAT_WORDS_BIGENDIAN
This fixes bug #9124 reported here:
https://bugs.freedesktop.org/show_bug.cgi?id=9124
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index a0eb13adc..ae78d9761 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -84,10 +84,10 @@ double d = 909042349670368103374704789055050114762116927356156320147971208440534 ]])], [ -if grep noonsees conftest.$ac_objext >/dev/null ; then +if grep -a noonsees conftest.$ac_objext >/dev/null ; then ax_cv_c_float_words_bigendian=yes fi -if grep seesnoon conftest.$ac_objext >/dev/null ; then +if grep -a seesnoon conftest.$ac_objext >/dev/null ; then if test "$ax_cv_c_float_words_bigendian" = unknown; then ax_cv_c_float_words_bigendian=no else |