From a5e265f4af9bd95757e693da4f37dcb2b3d9772a Mon Sep 17 00:00:00 2001 From: Rmys Date: Sun, 13 Jun 2021 20:23:03 +0300 Subject: [PATCH] fuse rebuild --- system/base/fuse/actions.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/base/fuse/actions.py b/system/base/fuse/actions.py index 41f8f5af..9bc8adf2 100644 --- a/system/base/fuse/actions.py +++ b/system/base/fuse/actions.py @@ -31,9 +31,11 @@ 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())) + shelltools.system("ln -sfv %s/lib/libfuse.so.%s %s/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("ln -sfv %s/lib/libulockmgr.so.%s %s/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())