]> git.kaiwu.me - nginx.git/commitdiff
fix ">/dev/null 2>&1" order
authorIgor Sysoev <igor@sysoev.ru>
Mon, 18 Sep 2006 12:35:01 +0000 (12:35 +0000)
committerIgor Sysoev <igor@sysoev.ru>
Mon, 18 Sep 2006 12:35:01 +0000 (12:35 +0000)
auto/cc/name
auto/endianess
auto/feature

index aa3440cb91b64610316f856dbf3b15fb721f84e5..84a37f7f8e4fea33176ee7c62579194670238576 100644 (file)
@@ -8,7 +8,7 @@ echo $ngx_n "checking for C compiler ...$ngx_c"
 if [ "$CC" = cl ]; then
     if `$NGX_WINE $CC -v 2>&1 \
         | grep '^Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13' \
-          2>&1 >/dev/null`; then
+        >/dev/null 2>&1`; then
 
         NGX_CC_NAME=msvc7
         echo " Microsoft Visual C++ 7 compiler"
@@ -29,27 +29,27 @@ if [ "$CC" = bcc32 ]; then
     echo " Borland C++ compiler"
 
 else
-if `$CC -v 2>&1 | grep 'gcc version' 2>&1 >/dev/null`; then
+if `$CC -v 2>&1 | grep 'gcc version' >/dev/null 2>&1`; then
     NGX_CC_NAME=gcc
     echo " GNU C compiler"
 
 else
-if `$CC -V 2>&1 | grep '^Intel(R) C' 2>&1 >/dev/null`; then
+if `$CC -V 2>&1 | grep '^Intel(R) C' >/dev/null 2>&1`; then
     NGX_CC_NAME=icc
     echo " Intel C++ compiler"
 
 else
-if `$CC -V 2>&1 | grep 'Sun C' 2>&1 >/dev/null`; then
+if `$CC -V 2>&1 | grep 'Sun C' >/dev/null 2>&1`; then
     NGX_CC_NAME=sunc
     echo " Sun C compiler"
 
 else
-if `$CC -V 2>&1 | grep '^Compaq C' 2>&1 >/dev/null`; then
+if `$CC -V 2>&1 | grep '^Compaq C' >/dev/null 2>&1`; then
     NGX_CC_NAME=ccc
     echo " Compaq C compiler"
 
 else
-if `$CC -V 2>&1 | grep '^aCC: ' 2>&1 >/dev/null`; then
+if `$CC -V 2>&1 | grep '^aCC: ' >/dev/null 2>&1`; then
     NGX_CC_NAME=acc
     echo " HP aC++ compiler"
 
index 0f16bc581f2dff56ecc6cb2c9b8034b24a295460..5ed22a8ec9b4df72ce0c217562e3ded6202d0d25 100644 (file)
@@ -26,7 +26,7 @@ ngx_test="$CC $CC_TEST_FLAGS $CC_AUX_FLAGS \
 eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1"
 
 if [ -x $NGX_AUTOTEST ]; then
-    if $NGX_AUTOTEST 2>&1 > /dev/null; then
+    if $NGX_AUTOTEST >/dev/null 2>&1; then
         echo " little endianess"
         have=NGX_HAVE_LITTLE_ENDIAN . auto/have
     else
index 37420e3d61eceaabccbc83408ad27aea5f35752b..afe171c1504076e63ec927b18e7dab6f69dde7e4 100644 (file)
@@ -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