diff options
author | Tuan M. Hoang <tmhoang@flatglobe.org> | 2018-06-03 00:54:44 +0000 |
---|---|---|
committer | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-06-03 10:42:07 +0000 |
commit | 1f7dc26742f12f6bc08e86c39551b0a3c0d27252 (patch) | |
tree | 8d7528671a12916f6ceb52192cf862f61906b8cf /community/babl | |
parent | 9ffc9432ea1d3fd100deeb9161d9d2129504de15 (diff) | |
download | aports-1f7dc26742f12f6bc08e86c39551b0a3c0d27252.tar.bz2 aports-1f7dc26742f12f6bc08e86c39551b0a3c0d27252.tar.xz |
community/babl: -Ofast fails float-to-8bit test on s390x
float-to-8bit test is unstable on s390x, it won't fail if previous build
is cached as being successful.
babl commit 90e25d7ff381fc67588d77bb033992079bab5d3a introduces -Ofast
which (probably) causes this.
upstream bug : https://bugzilla.gnome.org/show_bug.cgi?id=790745
Diffstat (limited to 'community/babl')
-rw-r--r-- | community/babl/APKBUILD | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/community/babl/APKBUILD b/community/babl/APKBUILD index d3861d1fad..fe25e91e6c 100644 --- a/community/babl/APKBUILD +++ b/community/babl/APKBUILD @@ -11,6 +11,8 @@ source="https://ftp.gimp.org/pub/babl/${pkgver%.*}/$pkgname-$pkgver.tar.bz2" build() { cd "$builddir" + # See: https://bugzilla.gnome.org/show_bug.cgi?id=790745 + [ "$CARCH" = "s390x" ] && sed -i -e 's/-Ofast//g' configure ./configure \ --build=$CBUILD \ --host=$CHOST \ |