diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-10-13 15:11:30 +0200 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-10-13 15:18:04 +0200 |
commit | 604aaef0eb11666c4a0a904adf46b45730c94c33 (patch) | |
tree | 146105bdad3d1d5e7400d86ce1d830b342a0754e /main/libasr | |
parent | a968f968f4da6f945f27c9c711771c722d918970 (diff) | |
download | aports-604aaef0eb11666c4a0a904adf46b45730c94c33.tar.bz2 aports-604aaef0eb11666c4a0a904adf46b45730c94c33.tar.xz |
main/libasr: build fix for gcc8
Just a dirty hotfix.
A proper fix is provided in https://github.com/OpenSMTPD/libasr/pull/18
Diffstat (limited to 'main/libasr')
-rw-r--r-- | main/libasr/APKBUILD | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/libasr/APKBUILD b/main/libasr/APKBUILD index 4486057a8a..2afb27a1aa 100644 --- a/main/libasr/APKBUILD +++ b/main/libasr/APKBUILD @@ -28,6 +28,8 @@ prepare() { build() { cd "$builddir" + # XXX: Hotfix, see: https://github.com/OpenSMTPD/libasr/pull/18 + CFLAGS="-Wno-error=maybe-uninitialized" \ ./configure --build=$CBUILD \ --host=$CHOST \ --with-pie \ |