comparison auto/feature @ 702:67deba330372

auto/configure [ PAUSE ] hwcap bug
author Igor Sysoev <igor@sysoev.ru>
date Mon, 18 Sep 2006 12:27:33 +0000
parents 4946078f0a79
children 694d285ec752
comparison
equal deleted inserted replaced
701:b2c104777eeb 702:67deba330372
41 if [ -x $NGX_AUTOTEST ]; then 41 if [ -x $NGX_AUTOTEST ]; then
42 42
43 case "$ngx_feature_run" in 43 case "$ngx_feature_run" in
44 44
45 yes) 45 yes)
46 if $NGX_AUTOTEST 2>&1 > /dev/null; then 46 # /bin/sh is used to intercept "Killed" or "Abort trap" messages
47 if /bin/sh $NGX_AUTOTEST > /dev/null 2>&1; then
47 echo " found" 48 echo " found"
48 ngx_found=yes 49 ngx_found=yes
49 50
50 if test -n "$ngx_feature_name"; then 51 if test -n "$ngx_feature_name"; then
51 have=$ngx_have_feature . auto/have 52 have=$ngx_have_feature . auto/have
55 echo " found but is not working" 56 echo " found but is not working"
56 fi 57 fi
57 ;; 58 ;;
58 59
59 bug) 60 bug)
60 if $NGX_AUTOTEST 2>&1 > /dev/null; then 61 # /bin/sh is used to intercept "Killed" or "Abort trap" messages
62 if /bin/sh $NGX_AUTOTEST > /dev/null 2>&1; then
61 echo " not found" 63 echo " not found"
62 64
63 else 65 else
64 echo " found" 66 echo " found"
65 ngx_found=yes 67 ngx_found=yes