summaryrefslogtreecommitdiffhomepage
path: root/auto/feature
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2006-09-18 12:27:33 +0000
committerIgor Sysoev <igor@sysoev.ru>2006-09-18 12:27:33 +0000
commit2bdefc12d89b4d60082df6d4db24f1d67887a951 (patch)
tree2054e30befb83cb796c254b542ad7778734834d3 /auto/feature
parent993b9da85592df2320ed92921fee6be309ef49a4 (diff)
downloadnginx-2bdefc12d89b4d60082df6d4db24f1d67887a951.tar.gz
nginx-2bdefc12d89b4d60082df6d4db24f1d67887a951.tar.bz2
auto/configure [ PAUSE ] hwcap bug
Diffstat (limited to '')
-rw-r--r--auto/feature6
1 files changed, 4 insertions, 2 deletions
diff --git a/auto/feature b/auto/feature
index 6ad008ae0..37420e3d6 100644
--- a/auto/feature
+++ b/auto/feature
@@ -43,7 +43,8 @@ if [ -x $NGX_AUTOTEST ]; then
case "$ngx_feature_run" in
yes)
- if $NGX_AUTOTEST 2>&1 > /dev/null; then
+ # /bin/sh is used to intercept "Killed" or "Abort trap" messages
+ if /bin/sh $NGX_AUTOTEST > /dev/null 2>&1; then
echo " found"
ngx_found=yes
@@ -57,7 +58,8 @@ if [ -x $NGX_AUTOTEST ]; then
;;
bug)
- if $NGX_AUTOTEST 2>&1 > /dev/null; then
+ # /bin/sh is used to intercept "Killed" or "Abort trap" messages
+ if /bin/sh $NGX_AUTOTEST > /dev/null 2>&1; then
echo " not found"
else