Skip to content

Commit

Permalink
Add explicit prefix in configure steps in opam files (#480)
Browse files Browse the repository at this point in the history
This makes it so that the configure step does not need to call opam.
  • Loading branch information
Gbury authored Sep 13, 2021
1 parent 384906b commit ba99397
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion alt-ergo-lib.opam
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ license: [
]

build: [
["ocaml" "unix.cma" "configure.ml" name "--libdir" lib "--mandir" man]
["ocaml" "unix.cma" "configure.ml" name "--prefix" prefix "--libdir" lib "--mandir" man]
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
2 changes: 1 addition & 1 deletion alt-ergo-lib.opam.template
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license: [
]

build: [
["ocaml" "unix.cma" "configure.ml" name "--libdir" lib "--mandir" man]
["ocaml" "unix.cma" "configure.ml" name "--prefix" prefix "--libdir" lib "--mandir" man]
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
2 changes: 1 addition & 1 deletion alt-ergo-parsers.opam
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ license: [
]

build: [
["ocaml" "unix.cma" "configure.ml" name "--libdir" lib "--mandir" man]
["ocaml" "unix.cma" "configure.ml" name "--prefix" prefix "--libdir" lib "--mandir" man]
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
2 changes: 1 addition & 1 deletion alt-ergo-parsers.opam.template
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license: [
]

build: [
["ocaml" "unix.cma" "configure.ml" name "--libdir" lib "--mandir" man]
["ocaml" "unix.cma" "configure.ml" name "--prefix" prefix "--libdir" lib "--mandir" man]
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
2 changes: 1 addition & 1 deletion alt-ergo.opam
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ license: [
]

build: [
["ocaml" "unix.cma" "configure.ml" name "--libdir" lib "--mandir" man]
["ocaml" "unix.cma" "configure.ml" name "--prefix" prefix "--libdir" lib "--mandir" man]
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
2 changes: 1 addition & 1 deletion alt-ergo.opam.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license: [
]

build: [
["ocaml" "unix.cma" "configure.ml" name "--libdir" lib "--mandir" man]
["ocaml" "unix.cma" "configure.ml" name "--prefix" prefix "--libdir" lib "--mandir" man]
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
2 changes: 1 addition & 1 deletion altgr-ergo.opam
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ license: [
]

build: [
["ocaml" "unix.cma" "configure.ml" name "--libdir" lib "--mandir" man]
["ocaml" "unix.cma" "configure.ml" name "--prefix" prefix "--libdir" lib "--mandir" man]
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]
2 changes: 1 addition & 1 deletion altgr-ergo.opam.template
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license: [
]

build: [
["ocaml" "unix.cma" "configure.ml" name "--libdir" lib "--mandir" man]
["ocaml" "unix.cma" "configure.ml" name "--prefix" prefix "--libdir" lib "--mandir" man]
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
]

0 comments on commit ba99397

Please sign in to comment.