X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx12.valuehost.ru (mx12.valuehost.ru [217.112.42.215]) by lists.alpinelinux.org (Postfix) with ESMTP id 2A9E95C66BA for ; Fri, 30 Nov 2018 11:05:20 +0000 (GMT) Received: from mx7.valuehost.ru (unknown [127.0.0.255]) by mx12.valuehost.ru (Postfix) with ESMTP id 222D660A98 for ; Fri, 30 Nov 2018 14:05:19 +0300 (MSK) From: alpine-mips-patches Date: Fri, 30 Nov 2018 10:36:49 +0000 Subject: [alpine-aports] [PATCH] community/ilmbase: fix build (bashisms) To: alpine-aports@lists.alpinelinux.org Message-Id: <20181130110519.222D660A98@mx12.valuehost.ru> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: On edge (x86_64, mipsel) build fails: ./configure: line 17377: syntax error: unexpected "(" (expecting "fi") checkbashisms reports multiple problems in ./configure so just run it with /bin/bash (especially since makedepends requires bash). Note neither 2.2.1 (tried) nor 2.3.0 (according to the source code) change anything regarding this matter. --- community/ilmbase/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/community/ilmbase/APKBUILD b/community/ilmbase/APKBUILD index 430d9e2fd4..34dfc241a4 100644 --- a/community/ilmbase/APKBUILD +++ b/community/ilmbase/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Mark Riedesel pkgname=ilmbase pkgver=2.2.0 -pkgrel=3 +pkgrel=4 pkgdesc="Base libraries from ILM for OpenEXR" url="http://www.openexr.com" arch="all" @@ -19,6 +19,7 @@ prepare() { build() { cd "$builddir" + CONFIG_SHELL=/bin/bash /bin/bash \ ./configure \ --build=$CBUILD \ --host=$CHOST \ -- 2.19.2 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---