main/lvm2: fix paths to thin-provisioning tools

The thin-provisioning tools paths have been moved under /usr/sbin from
/sbin in commit a19865d075ac9043d179b66fbbb6991e66d8b620
This commit is contained in:
Alex Denes 2024-03-17 15:51:32 +00:00 committed by Natanael Copa
parent 7bd9fce5e2
commit 7155fc7d35

View File

@ -2,7 +2,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=lvm2
pkgver=2.03.23
pkgrel=1
pkgrel=2
pkgdesc="Logical Volume Manager 2 utilities"
url="https://sourceware.org/lvm2/"
arch="all"
@ -74,16 +74,16 @@ build() {
--with-thin=internal \
--enable-dmeventd \
--enable-cmdlib \
--with-thin-check=/sbin/thin_check \
--with-thin-check=/usr/sbin/thin_check \
--disable-thin_check_needs_check \
--with-thin-dump=/sbin/thin_dump \
--with-thin-repair=/sbin/thin_repair \
--with-thin-restore=/sbin/thin_restore \
--with-cache-check=/sbin/cache_check \
--with-thin-dump=/usr/sbin/thin_dump \
--with-thin-repair=/usr/sbin/thin_repair \
--with-thin-restore=/usr/sbin/thin_restore \
--with-cache-check=/usr/sbin/cache_check \
--disable-cache_check_needs_check \
--with-cache-dump=/sbin/cache_dump \
--with-cache-repair=/sbin/cache_repair \
--with-cache-restore=/sbin/cache_restore \
--with-cache-dump=/usr/sbin/cache_dump \
--with-cache-repair=/usr/sbin/cache_repair \
--with-cache-restore=/usr/sbin/cache_restore \
--with-dmeventd-path=/sbin/dmeventd \
--without-systemd-run \
--enable-udev_rules \