diff options
author | Ben Gamari <ben@smart-cactus.org> | 2020-06-17 14:55:52 -0400 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2020-06-17 15:43:31 -0400 |
commit | 20616959a7f4821034e14a64c3c9bf288c9bc956 (patch) | |
tree | a068406609cedd0acc178218a75621cd4897f848 /aclocal.m4 | |
parent | 7faa4509cd7dbc6e2f873e4997e8888bd6ec3507 (diff) | |
download | haskell-20616959a7f4821034e14a64c3c9bf288c9bc956.tar.gz |
configure: Use grep -q instead of --quiet
The latter is apparently not supported by busybox.
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index cd5fcc1ec0..6db0600c6d 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1333,7 +1333,7 @@ AC_DEFUN([FP_GCC_VERSION], [ AC_MSG_ERROR([C compiler is required]) fi - if $CC --version | grep --quiet gcc; then + if $CC --version | grep -q gcc; then AC_CACHE_CHECK([version of gcc], [fp_cv_gcc_version], [ # Be sure only to look at the first occurrence of the "version " string; |