aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-extended/boinc
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2021-02-07 20:36:35 -0800
committerKhem Raj <raj.khem@gmail.com>2021-02-08 10:17:23 -0800
commit260c342157737a33f0c4e316b535af3d328e190f (patch)
tree9c9dc59d8de8f163c63e08aded3a868a12aaae48 /meta-oe/recipes-extended/boinc
parent0253865a6caf0c874a536bbcc3f52d99b3762f41 (diff)
downloadmeta-openembedded-contrib-260c342157737a33f0c4e316b535af3d328e190f.tar.gz
boinc-client: Fix build with autotools 2.70+
On arches which are not same as build host it finds ac_cv_c_undeclared_builtin_options = cannot detect and errors out. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended/boinc')
-rw-r--r--meta-oe/recipes-extended/boinc/boinc-client_7.16.16.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/boinc/boinc-client_7.16.16.bb b/meta-oe/recipes-extended/boinc/boinc-client_7.16.16.bb
index 441bcd3ac3..d2e81ee780 100644
--- a/meta-oe/recipes-extended/boinc/boinc-client_7.16.16.bb
+++ b/meta-oe/recipes-extended/boinc/boinc-client_7.16.16.bb
@@ -55,11 +55,12 @@ EXTRA_OECONF += "\
--without-wxdir \
--without-x \
--with-boinc-platform=${TARGET_SYS} \
+ ac_cv_c_undeclared_builtin_options='none' \
"
export PKG_CONFIG = "${STAGING_BINDIR_NATIVE}/pkg-config"
do_configure_prepend () {
- if "${@bb.utils.contains('DEPENDS', 'gtk+', '1', '0', d)}" = "0"
+ if [ "${@bb.utils.contains('DEPENDS', 'gtk+', '1', '0', d)}" = "0" ]
then
export GTK2_CFLAGS=""
export GTK2_LIBS=""