mirror of
https://github.com/MariaDB/server.git
synced 2026-05-16 20:07:13 +02:00
configure.in remove some stray warning messages for failed tests
safe_mysqld.sh remove some stray warning messages for failed tests
This commit is contained in:
parent
9fcc7174da
commit
0935747126
2 changed files with 7 additions and 7 deletions
|
|
@ -341,13 +341,13 @@ AC_PATH_PROG(KILL, kill, kill)
|
|||
AC_MSG_CHECKING("for kill switches")
|
||||
if $ac_cv_path_KILL -0 $$
|
||||
then
|
||||
CHECK_PID="$ac_cv_path_KILL -0 \$\$PID"
|
||||
CHECK_PID="$ac_cv_path_KILL -0 \$\$PID > /dev/null 2>&1"
|
||||
elif kill -s 0 $$
|
||||
then
|
||||
CHECK_PID="$ac_cv_path_KILL -s 0 \$\$PID"
|
||||
CHECK_PID="$ac_cv_path_KILL -s 0 \$\$PID > /dev/null 2>&1"
|
||||
else
|
||||
AC_MSG_WARN([kill -0 to check for pid seems to fail])
|
||||
CHECK_PID="$ac_cv_path_KILL -s SIGCONT \$\$PID"
|
||||
CHECK_PID="$ac_cv_path_KILL -s SIGCONT \$\$PID > /dev/null 2>&1"
|
||||
fi
|
||||
AC_SUBST(CHECK_PID)
|
||||
AC_MSG_RESULT("$CHECK_PID")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue