summaryrefslogtreecommitdiffhomepage
path: root/auto
diff options
context:
space:
mode:
Diffstat (limited to 'auto')
-rw-r--r--auto/echo/build3
1 files changed, 2 insertions, 1 deletions
diff --git a/auto/echo/build b/auto/echo/build
index 10670f74..d66c6951 100644
--- a/auto/echo/build
+++ b/auto/echo/build
@@ -10,7 +10,8 @@ rm -f $NXT_BUILD_DIR/echo
nxt_echo_test="$CC -o $NXT_BUILD_DIR/echo -O $NXT_CC_OPT
auto/echo/echo.c $NXT_LD_OPT"
-nxt_echo_err=`$nxt_echo_test 2>&1`
+# "|| true" is to bypass "set -e" setting.
+nxt_echo_err=`$nxt_echo_test 2>&1 || true`
if [ ! -x $NXT_BUILD_DIR/echo ]; then
$echo