diff auto/feature @ 703:694d285ec752

fix ">/dev/null 2>&1" order
author Igor Sysoev <igor@sysoev.ru>
date Mon, 18 Sep 2006 12:35:01 +0000
parents 67deba330372
children 5bb10018ae14
line wrap: on
line diff
--- 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