diff options
author | midipix <writeonce@midipix.org> | 2016-06-25 15:41:49 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-06-25 17:31:46 -0400 |
commit | 71fd88363a7de0d0115b5dbace4888d50c5b3547 (patch) | |
tree | 47d81921737c8ea3a0c6f730720250bb998deb0c /configure | |
parent | e15885e99a28ac2a33ceec5f9067bb0a76c3e4df (diff) | |
download | apimagic-71fd88363a7de0d0115b5dbace4888d50c5b3547.tar.bz2 apimagic-71fd88363a7de0d0115b5dbace4888d50c5b3547.tar.xz |
build system: use `grep -q` instead of `grep > /dev/null`.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -277,19 +277,19 @@ native_defaults() fi if [ -z "$mb_compiler" ]; then - $mb_native_cc -dM -E - < /dev/null | grep '__clang__' > /dev/null && mb_compiler='clang' + $mb_native_cc -dM -E - < /dev/null | grep -q '__clang__' && mb_compiler='clang' fi if [ -z "$mb_compiler" ]; then - $mb_native_cc -dM -E - < /dev/null | grep '__GCC' > /dev/null && mb_compiler='gcc' + $mb_native_cc -dM -E - < /dev/null | grep -q '__GCC' && mb_compiler='gcc' fi if [ -z "$mb_compiler" ]; then - $mb_native_cc -dM -E - < /dev/null | grep "^gcc" > /dev/null && mb_compiler='gcc' + $mb_native_cc -dM -E - < /dev/null | grep -q "^gcc" && mb_compiler='gcc' fi if [ -z "$mb_compiler" ]; then - $mb_native_cc -dM -E - < /dev/null | grep '__CPARSER__' > /dev/null && mb_compiler='cparser' + $mb_native_cc -dM -E - < /dev/null | grep -q '__CPARSER__' && mb_compiler='cparser' fi if [ -z "$mb_compiler" ]; then |