b0afccce67f68b27404d22b8d5057fbe847b54b9
[AGL/meta-agl-devel.git] /
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
5
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.
9
10 Upstream-Status: Pending
11 Signed-off-by: Yan <yanxk.fnst@fujitsu.com>
12 ---
13  src/configure | 2 +-
14  1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/src/configure b/src/configure
17 index bda829f..7a6a624 100755
18 --- a/src/configure
19 +++ b/src/configure
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
22  else
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; }
26  else
27    cat > conftest.$ac_ext <<EOF
28  #line 1559 "configure"
29 --
30 2.25.1