1 From 88d73d77794cde03f93ed53f21a163f5980696be Mon Sep 17 00:00:00 2023
2 From: Yan <yanxk.fnst@fujitsu.com>
3 Date: Fri, 25 Aug 2023 09:53:43 +0800
4 Subject: [PATCH] boa: fix configure avoid run test on cross platform
6 during configuration, boa configure would run already
7 cross compiled test files on host machine, remove exit
8 is to ignore this run test failure.
10 Upstream-Status: Pending
11 Signed-off-by: Yan <yanxk.fnst@fujitsu.com>
14 1 file changed, 1 insertion(+), 1 deletion(-)
16 diff --git a/src/configure b/src/configure
17 index bda829f..7a6a624 100755
20 @@ -1552,7 +1552,7 @@ if eval "test \"`echo '$''{'ac_cv_func_setvbuf_reversed'+set}'`\" = set"; then
21 echo $ac_n "(cached) $ac_c" 1>&6
23 if test "$cross_compiling" = yes; then
24 - { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
25 + { echo "configure: error: can not run test program while cross compiling" 1>&2; }
27 cat > conftest.$ac_ext <<EOF
28 #line 1559 "configure"