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())