Move mount binaries into usr/sbin

This commit is contained in:
2025-12-14 19:17:00 +02:00
parent 189d9e58ef
commit 5858f2cfdd
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
name: fuse2 name: fuse2
description: The reference implementation of the Linux FUSE (Filesystem in Userspace) interface description: The reference implementation of the Linux FUSE (Filesystem in Userspace) interface
version: 2.9.9 version: 2.9.9
revision: 2 revision: 3
url: https://github.com/libfuse/libfuse url: https://github.com/libfuse/libfuse
license: GPL2,LGPL2.1 license: GPL2,LGPL2.1
architecture: any architecture: any
+1 -1
View File
@@ -15,7 +15,7 @@ prepare() {
# The build function is executed in the source directory # The build function is executed in the source directory
# This function is used to compile the source code # This function is used to compile the source code
build() { build() {
UDEV_RULES_PATH=/usr/lib/udev/rules.d MOUNT_FUSE_PATH=/usr/bin ./configure --prefix=/usr --enable-lib --enable-util --disable-example UDEV_RULES_PATH=/usr/lib/udev/rules.d MOUNT_FUSE_PATH=/usr/sbin ./configure --prefix=/usr --enable-lib --enable-util --disable-example
make make
} }