diff options
author | sodface <sod@sodface.com> | 2024-09-06 12:12:09 +0000 |
---|---|---|
committer | Celeste <20312-Celeste@users.gitlab.alpinelinux.org> | 2024-09-06 13:37:33 +0000 |
commit | e3c60bce6c61d9ac6d7f2f7fa35fe3af9b50a2fb (patch) | |
tree | 6500c98008c6b901d8db7cfb4f01aad694de192d | |
parent | b9888f128da5628fb99f392aa10bf637c7861026 (diff) | |
download | aports-e3c60bce6c61d9ac6d7f2f7fa35fe3af9b50a2fb.zip |
community/freeipmi: increase stack size
-rw-r--r-- | community/freeipmi/APKBUILD | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/community/freeipmi/APKBUILD b/community/freeipmi/APKBUILD index f960f0b841d..74aa77abdcc 100644 --- a/community/freeipmi/APKBUILD +++ b/community/freeipmi/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Sodface <sod@sodface.com> pkgname=freeipmi pkgver=1.6.14 -pkgrel=1 +pkgrel=2 pkgdesc="IPMI library and utilities" url="https://www.gnu.org/software/freeipmi/" arch="all !ppc64le" @@ -28,6 +28,8 @@ prepare() { } build() { + # https://gitlab.alpinelinux.org/alpine/aports/-/issues/16390 + export LDFLAGS="$LDFLAGS -Wl,-z,stack-size=0x200000" ./configure \ --build=$CBUILD \ --host=$CHOST \ |