remove echoing ~ /usr/bin/timeout

This commit is contained in:
Dirk 2017-09-18 23:38:06 +02:00
parent b222fe8f53
commit 1c10ad0124
1 changed files with 1 additions and 1 deletions

View File

@ -11380,7 +11380,7 @@ find_openssl_binary() {
HAS_MYSQL=true
if [[ "$OPENSSL_TIMEOUT" != "" ]]; then
if which timeout >&2 2>/dev/null ; then
if which timeout 2>&1 >/dev/null ; then
# there are different "timeout". Check whether --preserve-status is supported
if timeout --help 2>/dev/null | grep -q 'preserve-status'; then
OPENSSL="timeout --preserve-status $OPENSSL_TIMEOUT $OPENSSL"