diff options
author | unknown <tim@threads.polyesthetic.msg> | 2000-09-23 12:39:40 -0400 |
---|---|---|
committer | unknown <tim@threads.polyesthetic.msg> | 2000-09-23 12:39:40 -0400 |
commit | de17c6d32b12e9687ba06d09c78c723c583e384d (patch) | |
tree | 290d33baffb4c92f0aa41d3e9155a68217e83447 /configure.in | |
parent | 3b6a084a24b659eb2123817be21479f918bafed7 (diff) | |
download | mariadb-git-de17c6d32b12e9687ba06d09c78c723c583e384d.tar.gz |
safe_mysqld.sh remove stray warning message from nohup nice
configure.in the & in 2>&1 gets replaced by sed during AC_SUBST
configure.in:
the & in 2>&1 gets replaced by sed during AC_SUBST
scripts/safe_mysqld.sh:
remove stray warning message from nohup nice
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 731aefbe255..394b4f83a89 100644 --- a/configure.in +++ b/configure.in @@ -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 > /dev/null 2>&1" + CHECK_PID="$ac_cv_path_KILL -0 \$\$PID > /dev/null 2> /dev/null" elif kill -s 0 $$ then - CHECK_PID="$ac_cv_path_KILL -s 0 \$\$PID > /dev/null 2>&1" + CHECK_PID="$ac_cv_path_KILL -s 0 \$\$PID > /dev/null 2> /dev/null" else AC_MSG_WARN([kill -0 to check for pid seems to fail]) - CHECK_PID="$ac_cv_path_KILL -s SIGCONT \$\$PID > /dev/null 2>&1" + CHECK_PID="$ac_cv_path_KILL -s SIGCONT \$\$PID > /dev/null 2> /dev/null" fi AC_SUBST(CHECK_PID) AC_MSG_RESULT("$CHECK_PID") |