diff options
author | info@mobile-stream.com <info@mobile-stream.com> | 2018-11-30 10:36:49 +0000 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2018-11-30 13:27:03 +0000 |
commit | 9c3c2e68d02f9230dd69910de32c65536f9a7067 (patch) | |
tree | 93d569e02fca6a14fbfcd7f21055eeffb3066019 /community/ilmbase | |
parent | 21966630200d0258153232ae8c4e07190305449e (diff) | |
download | aports-9c3c2e68d02f9230dd69910de32c65536f9a7067.zip |
community/ilmbase: fix build (bashisms)
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.
Diffstat (limited to 'community/ilmbase')
-rw-r--r-- | community/ilmbase/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/community/ilmbase/APKBUILD b/community/ilmbase/APKBUILD index 430d9e2fd49..34dfc241a46 100644 --- a/community/ilmbase/APKBUILD +++ b/community/ilmbase/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Mark Riedesel <mark+alpine@klowner.com> 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 \ |