Use GNU version of fgrep/egrep tool if available

It is mostly for BSD system. Some tests (run-make/issue-35164 and
run-make/cat-and-grep-sanity-check) are failing with BSD
fgrep, whereas they pass with gnu version (gfgrep).
This commit is contained in:
Sébastien Marie 2018-03-22 11:27:59 +01:00
parent eb8d08d904
commit de1c929ada
1 changed files with 5 additions and 0 deletions

View File

@ -63,6 +63,11 @@ done
shift $((OPTIND - 1))
# use gnu version of tool if available (for bsd)
if command -v "g${GREPPER}"; then
GREPPER="g${GREPPER}"
fi
LOG=$(mktemp -t cgrep.XXXXXX)
trap "rm -f $LOG" EXIT