From 4e16e4de874e0bfa68ecda2f91e7730a4b8a5355 Mon Sep 17 00:00:00 2001 From: Rmys Date: Sun, 13 Jun 2021 20:08:39 +0300 Subject: [PATCH] fuse rebu'ld --- system/base/fuse/actions.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/base/fuse/actions.py b/system/base/fuse/actions.py index d23c943a..41f8f5af 100644 --- a/system/base/fuse/actions.py +++ b/system/base/fuse/actions.py @@ -31,6 +31,9 @@ def install(): pisitools.dodir("/lib") pisitools.domove("/usr/lib/libfuse.so.*", "/lib") shelltools.system("ln -sfv %s/lib/libfuse.so.%s %s/usr/lib/libfuse.so" % (get.installDIR(), get.srcVERSION(), get.installDIR())) + + pisitools.domove("/usr/lib/libulockmgr.so.*", "/lib") + shelltools.system("ln -sfv %s/lib/libulockmgr.so.%s %s/usr/lib/libulockmgr.so" % (get.installDIR(), get.srcVERSION(), get.installDIR())) shelltools.system("install -v -m755 -d %s/usr/share/doc/fuse-%s" % (get.installDIR(), get.srcVERSION())) shelltools.system("install -v -m644 doc/kernel.txt %s/usr/share/doc/fuse" % get.installDIR())