Skip to content

Commit

Permalink
Remove warning due to the lack of -package str
Browse files Browse the repository at this point in the history
  • Loading branch information
mhjd committed Aug 22, 2024
1 parent 6524344 commit 7317ffe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/odoc_wiki/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ OCAMLDUCEFIND ?= ocamlducefind
OCAMLDOC ?= ${OCAMLFIND} ocamldoc
OCAMLDUCEDOC ?= ${OCAMLDUCEFIND} ocamldoc

OCAMLC ?= ${OCAMLFIND} ocamlc
OCAMLC ?= ${OCAMLFIND} ocamlc -package str
OCAMLDUCEC ?= ${OCAMLDUCEFIND} ocamlc
OCAMLOPT ?= ${OCAMLFIND} ocamlopt
OCAMLOPT ?= ${OCAMLFIND} ocamlopt -package str
OCAMLDUCEOPT ?= ${OCAMLDUCEFIND} ocamlopt
OCAMLDEP ?= ${OCAMLFIND} ocamldep
OCAMLDUCEDEP ?= ${OCAMLDUCEFIND} ocamldep
Expand Down
2 changes: 1 addition & 1 deletion wikidoc.opam
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ remove: [
[ "rm" "-f" "%{bin}%/latex_of_wiki" ]
]
depends: [
"ocaml" {= "4.14.0" | = "4.14.1" | = "4.14.2"}
"ocaml" {>= "4.14.0" & < "5.1.0"}
"base-threads"
"base-unix"
"ocamlfind"
Expand Down

0 comments on commit 7317ffe

Please sign in to comment.