fix ">/dev/null 2>&1" order

This commit is contained in:
Igor Sysoev 2006-09-18 12:35:01 +00:00
parent 2bdefc12d8
commit 14fcd477a1
3 changed files with 9 additions and 9 deletions

View File

@ -8,7 +8,7 @@ echo $ngx_n "checking for C compiler ...$ngx_c"
if [ "$CC" = cl ]; then if [ "$CC" = cl ]; then
if `$NGX_WINE $CC -v 2>&1 \ if `$NGX_WINE $CC -v 2>&1 \
| grep '^Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 13' \ | 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 NGX_CC_NAME=msvc7
echo " Microsoft Visual C++ 7 compiler" echo " Microsoft Visual C++ 7 compiler"
@ -29,27 +29,27 @@ if [ "$CC" = bcc32 ]; then
echo " Borland C++ compiler" echo " Borland C++ compiler"
else 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 NGX_CC_NAME=gcc
echo " GNU C compiler" echo " GNU C compiler"
else 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 NGX_CC_NAME=icc
echo " Intel C++ compiler" echo " Intel C++ compiler"
else 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 NGX_CC_NAME=sunc
echo " Sun C compiler" echo " Sun C compiler"
else 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 NGX_CC_NAME=ccc
echo " Compaq C compiler" echo " Compaq C compiler"
else 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 NGX_CC_NAME=acc
echo " HP aC++ compiler" echo " HP aC++ compiler"

View File

@ -26,7 +26,7 @@ ngx_test="$CC $CC_TEST_FLAGS $CC_AUX_FLAGS \
eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1" eval "$ngx_test >> $NGX_AUTOCONF_ERR 2>&1"
if [ -x $NGX_AUTOTEST ]; then if [ -x $NGX_AUTOTEST ]; then
if $NGX_AUTOTEST 2>&1 > /dev/null; then if $NGX_AUTOTEST >/dev/null 2>&1; then
echo " little endianess" echo " little endianess"
have=NGX_HAVE_LITTLE_ENDIAN . auto/have have=NGX_HAVE_LITTLE_ENDIAN . auto/have
else else

View File

@ -44,7 +44,7 @@ if [ -x $NGX_AUTOTEST ]; then
yes) yes)
# /bin/sh is used to intercept "Killed" or "Abort trap" messages # /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" echo " found"
ngx_found=yes ngx_found=yes
@ -59,7 +59,7 @@ if [ -x $NGX_AUTOTEST ]; then
bug) bug)
# /bin/sh is used to intercept "Killed" or "Abort trap" messages # /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" echo " not found"
else else