diff options
author | Mike Gilbert <floppym@gentoo.org> | 2024-05-02 10:53:13 -0400 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2024-05-02 10:53:13 -0400 |
commit | 449dc37ae3fbdefc9bc3453c0b7ba50971f2876b (patch) | |
tree | 53bc0c9a8e2ea5a8ed5a39606e482db13b82f533 /sys-fs/lvm2 | |
parent | sys-apps/systemctl-tui: New package, v0.3.4 (diff) | |
download | gentoo-449dc37ae3fbdefc9bc3453c0b7ba50971f2876b.tar.gz gentoo-449dc37ae3fbdefc9bc3453c0b7ba50971f2876b.tar.bz2 gentoo-449dc37ae3fbdefc9bc3453c0b7ba50971f2876b.zip |
sys-fs/lvm2: update path for thin-provisioning-tools
The rust-based package installs binaries in /usr/sbin.
Closes: https://bugs.gentoo.org/927402
Signed-off-by: Mike Gilbert <floppym@gentoo.org>
Diffstat (limited to 'sys-fs/lvm2')
-rw-r--r-- | sys-fs/lvm2/lvm2-2.03.22-r4.ebuild (renamed from sys-fs/lvm2/lvm2-2.03.22-r3.ebuild) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-fs/lvm2/lvm2-2.03.22-r3.ebuild b/sys-fs/lvm2/lvm2-2.03.22-r4.ebuild index 5575480db560..42b6ae927976 100644 --- a/sys-fs/lvm2/lvm2-2.03.22-r3.ebuild +++ b/sys-fs/lvm2/lvm2-2.03.22-r4.ebuild @@ -135,8 +135,8 @@ src_configure() { myeconfargs+=( --with-thin=internal --with-cache=internal ) local texec for texec in check dump repair restore; do - myeconfargs+=( --with-thin-${texec}="${EPREFIX}"/sbin/thin_${texec} ) - myeconfargs+=( --with-cache-${texec}="${EPREFIX}"/sbin/cache_${texec} ) + myeconfargs+=( --with-thin-${texec}="${EPREFIX}"/usr/sbin/thin_${texec} ) + myeconfargs+=( --with-cache-${texec}="${EPREFIX}"/usr/sbin/cache_${texec} ) done else myeconfargs+=( --with-thin=none --with-cache=none ) |