diff options
author | William Pitcock <nenolod@dereferenced.org> | 2017-07-13 23:47:36 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2017-07-13 23:47:36 +0000 |
commit | 71fefd63595c2721719957a7e4e44f9d17d156f4 (patch) | |
tree | d4002ffca4d8c278957516e3abceec465298af02 /main/libunwind | |
parent | 32eac8eb77e0bb9e959609d6440e0e2832978caf (diff) | |
download | aports-71fefd63595c2721719957a7e4e44f9d17d156f4.tar.bz2 aports-71fefd63595c2721719957a7e4e44f9d17d156f4.tar.xz |
main/libunwind: reinstate x86 restrictions
Diffstat (limited to 'main/libunwind')
-rw-r--r-- | main/libunwind/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/libunwind/APKBUILD b/main/libunwind/APKBUILD index 45cd6d7b34..dda0083f84 100644 --- a/main/libunwind/APKBUILD +++ b/main/libunwind/APKBUILD @@ -6,7 +6,7 @@ _pkgver=${pkgver/_/-} pkgrel=0 pkgdesc="Portable and efficient C programming interface (API) to determine the call-chain of a program" url="http://www.nongnu.org/libunwind/" -arch="all !s390x !ppc64le" +arch="all !s390x !x86 !ppc64le" license="MIT" depends="" depends_dev="libexecinfo-dev" @@ -20,7 +20,7 @@ build() { cd "$builddir" autoreconf -f -i - CFLAGS="-fno-stack-protector" LDFLAGS="-lexecinfo" ./configure \ + LDFLAGS="-lexecinfo" ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ |