mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 06:51:51 +08:00
bc036dc3f9
Drop two patches that have been applied upstream: - 100-fuse_signals.c-fix-build-warning-when-HAVE_BACKTRACE.patch - 101-mount_util.c-check-if-utab-exists-before-update.patch Changelog: https://github.com/libfuse/libfuse/releases/tag/fuse-3.18.2 Signed-off-by: Alexandru Ardelean <alex@shruggie.ro>
11 lines
135 B
Bash
11 lines
135 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
fuse3-utils)
|
|
[ -x /usr/sbin/mount.fuse3 ]
|
|
;;
|
|
libfuse3)
|
|
ls /usr/lib/libfuse3.so.* > /dev/null
|
|
;;
|
|
esac
|