Commit 1f41c7ec authored by Sergei Trofimovich's avatar Sergei Trofimovich
Browse files

liberasurecode: fix manpages install

Without the change the build fails on `master` as
https://hydra.nixos.org/build/313371233:

    ERROR: installManPage: installManPage: path missing manpage section suffix: doc/man/man3/noname

ZHF: #457852
parent 042d0c7f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -50,7 +50,8 @@ stdenv.mkDerivation (finalAttrs: {
  postInstall = ''
    # remove useless man pages about directories
    rm doc/man/man*/_*
    installManPage doc/man/man*/*
    # avoid installing doc/man/man3/noname
    installManPage doc/man/man*/*.*

    moveToOutput share/liberasurecode/ $doc
  '';