summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorunknown <tim@threads.polyesthetic.msg>2000-09-23 12:39:40 -0400
committerunknown <tim@threads.polyesthetic.msg>2000-09-23 12:39:40 -0400
commitde17c6d32b12e9687ba06d09c78c723c583e384d (patch)
tree290d33baffb4c92f0aa41d3e9155a68217e83447 /scripts
parent3b6a084a24b659eb2123817be21479f918bafed7 (diff)
downloadmariadb-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 'scripts')
-rw-r--r--scripts/safe_mysqld.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/safe_mysqld.sh b/scripts/safe_mysqld.sh
index 91d99c283f6..f2478c086f7 100644
--- a/scripts/safe_mysqld.sh
+++ b/scripts/safe_mysqld.sh
@@ -91,7 +91,7 @@ fi
NOHUP_NICENESS="nohup"
if test -w /
then
- NOHUP_NICENESS=`nohup nice`
+ NOHUP_NICENESS=`nohup nice 2>&1`
if test $? -eq 0 && test x"$NOHUP_NICENESS" != x0 && nice --1 echo foo > /dev/null 2>&1; then
NOHUP_NICENESS="nice --$NOHUP_NICENESS nohup"
else