summaryrefslogtreecommitdiffhomepage
path: root/auto/feature
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-09-18 12:35:01 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-09-18 12:35:01 +0000
commit14fcd477a1ba560b67c45b68012216d8a575888a (patch)
tree4c71564b928780c852ecf51d926689dfb7a3f731 /auto/feature
parent2bdefc12d89b4d60082df6d4db24f1d67887a951 (diff)
downloadnginx-14fcd477a1ba560b67c45b68012216d8a575888a.tar.gz
nginx-14fcd477a1ba560b67c45b68012216d8a575888a.tar.bz2
fix ">/dev/null 2>&1" order
Diffstat (limited to '')
-rw-r--r--auto/feature4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto/feature b/auto/feature
index 37420e3d6..afe171c15 100644
--- a/auto/feature
+++ b/auto/feature
@@ -44,7 +44,7 @@ if [ -x $NGX_AUTOTEST ]; then
yes)
# /bin/sh is used to intercept "Killed" or "Abort trap" messages
- if /bin/sh $NGX_AUTOTEST > /dev/null 2>&1; then
+ if /bin/sh $NGX_AUTOTEST >/dev/null 2>&1; then
echo " found"
ngx_found=yes
@@ -59,7 +59,7 @@ if [ -x $NGX_AUTOTEST ]; then
bug)
# /bin/sh is used to intercept "Killed" or "Abort trap" messages
- if /bin/sh $NGX_AUTOTEST > /dev/null 2>&1; then
+ if /bin/sh $NGX_AUTOTEST >/dev/null 2>&1; then
echo " not found"
else