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