u9fs: fix man page location

By convention man pages need to located at `share/man/man$section/$name.$section`.
This commit is contained in:
sternenseemann
2022-03-22 13:47:11 +00:00
committed by ehmry
parent b4c2ffaffa
commit 168bdc3c7d
+2 -2
View File
@@ -11,8 +11,8 @@ stdenv.mkDerivation {
};
installPhase = ''
mkdir -p $out/bin $out/share/man4
cp u9fs.man $out/share/man4
mkdir -p $out/bin $out/share/man/man4
cp u9fs.man $out/share/man/man4/u9fs.4
cp u9fs $out/bin
'';