mirror of
https://github.com/curl/curl.git
synced 2026-04-15 02:21:41 +03:00
configure: use $EGREP in place of grep -E
`$EGREP` is set based on an earlier test in configure so that we can work with systems that have `egrep` and a `grep` that does not support `-E`. Closes #13780
This commit is contained in:
parent
2fec5cd510
commit
e492834323
1 changed files with 1 additions and 1 deletions
|
|
@ -5037,7 +5037,7 @@ AC_MSG_NOTICE([Configured to build curl/libcurl:
|
|||
Features: ${SUPPORT_FEATURES}
|
||||
])
|
||||
|
||||
non13=`echo "$TLSCHOICE" | grep -Ei 'bearssl|secure-transport|mbedtls'`;
|
||||
non13=`echo "$TLSCHOICE" | $EGREP -i 'bearssl|secure-transport|mbedtls'`;
|
||||
if test -n "$non13"; then
|
||||
cat >&2 << _EOF
|
||||
WARNING: A selected TLS library ($TLSCHOICE) does not support TLS 1.3!
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue