Merge pull request #223603 from anmonteiro/patch-5

buildDunePackage: use `--mandir` instead of `--man`
This commit is contained in:
superherointj
2023-03-28 15:40:33 -03:00
committed by GitHub
+1 -1
View File
@@ -32,7 +32,7 @@ stdenv.mkDerivation ({
runHook preInstall
dune install --prefix $out --libdir $OCAMLFIND_DESTDIR ${pname} \
${if lib.versionAtLeast Dune.version "2.9"
then "--docdir $out/share/doc --man $out/share/man"
then "--docdir $out/share/doc --mandir $out/share/man"
else ""}
runHook postInstall
'';