From 260c342157737a33f0c4e316b535af3d328e190f Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Sun, 7 Feb 2021 20:36:35 -0800 Subject: 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 --- meta-oe/recipes-extended/boinc/boinc-client_7.16.16.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'meta-oe/recipes-extended/boinc') 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="" -- cgit v1.2.3-54-g00ecf