From 4d72ad9d496a3a705f84169dc857d143e25c8d22 Mon Sep 17 00:00:00 2001 From: Kevin Stolp Date: Sun, 6 Oct 2024 15:27:43 -0700 Subject: [PATCH] Disable use of libunwind If libunwind is detected during building, it will automatically be linked. Since this is more relevant for people doing development/debugging and probably not for the majority of users of this package, we are disabling it. --- .SRCINFO | 2 +- PKGBUILD | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f6719e0..65e1b03 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = zfs-utils pkgdesc = Userspace utilities for the Zettabyte File System. pkgver = 2.2.6 - pkgrel = 2 + pkgrel = 3 url = https://zfsonlinux.org/ arch = i686 arch = x86_64 diff --git a/PKGBUILD b/PKGBUILD index 06213b4..ae7ecd6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ pkgname=zfs-utils pkgver=2.2.6 -pkgrel=2 +pkgrel=3 pkgdesc="Userspace utilities for the Zettabyte File System." arch=("i686" "x86_64" "aarch64") url="https://zfsonlinux.org/" @@ -57,6 +57,7 @@ build() { --with-udevdir=/usr/lib/udev \ --libexecdir=/usr/lib \ --localstatedir=/var \ + --without-libunwind \ --with-python="$PWD/python3-fake" \ --enable-pyzfs=no \ --enable-systemd \