diff options
| author | Igor Sysoev <igor@sysoev.ru> | 2011-05-11 11:50:19 +0000 |
|---|---|---|
| committer | Igor Sysoev <igor@sysoev.ru> | 2011-05-11 11:50:19 +0000 |
| commit | 768f7a05d21be55967955b401a9716082604a0ee (patch) | |
| tree | 0369985913b92cfbd2ea76d07c5f20b653e95400 | |
| parent | 50733a53ecfd395535f79ab0d9a9a3d7a648e0d5 (diff) | |
| download | nginx-768f7a05d21be55967955b401a9716082604a0ee.tar.gz nginx-768f7a05d21be55967955b401a9716082604a0ee.tar.bz2 | |
log "Abort trap" or similar messages
| -rw-r--r-- | auto/feature | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/auto/feature b/auto/feature index 0f9becc3b..98e757caf 100644 --- a/auto/feature +++ b/auto/feature @@ -52,7 +52,7 @@ if [ -x $NGX_AUTOTEST ]; then yes) # /bin/sh is used to intercept "Killed" or "Abort trap" messages - if /bin/sh -c $NGX_AUTOTEST >/dev/null 2>&1; then + if /bin/sh -c $NGX_AUTOTEST >> $NGX_AUTOCONF_ERR 2>&1; then echo " found" ngx_found=yes @@ -67,7 +67,7 @@ if [ -x $NGX_AUTOTEST ]; then value) # /bin/sh is used to intercept "Killed" or "Abort trap" messages - if /bin/sh -c $NGX_AUTOTEST >/dev/null 2>&1; then + if /bin/sh -c $NGX_AUTOTEST >> $NGX_AUTOCONF_ERR 2>&1; then echo " found" ngx_found=yes @@ -85,7 +85,7 @@ END bug) # /bin/sh is used to intercept "Killed" or "Abort trap" messages - if /bin/sh -c $NGX_AUTOTEST >/dev/null 2>&1; then + if /bin/sh -c $NGX_AUTOTEST >> $NGX_AUTOCONF_ERR 2>&1; then echo " not found" else |
