Stéphane Glondu pushed to branch master at Debian OCaml Maintainers / dh-ocaml
Commits:
-
cf1daec5
by Stephane Glondu at 2024-08-03T04:02:20+02:00
-
53f13bd0
by Stephane Glondu at 2024-08-03T04:02:28+02:00
-
edce4047
by Stephane Glondu at 2024-08-03T05:07:17+02:00
2 changed files:
Changes:
... | ... | @@ -68,8 +68,10 @@ sub test { |
68 | 68 | |
69 | 69 | sub install {
|
70 | 70 | my $this = shift;
|
71 | + my $ocaml_stdlib_dir = `ocamlc -where`;
|
|
72 | + chomp($ocaml_stdlib_dir);
|
|
71 | 73 | $this->doit_in_sourcedir( "dune", "install", "--destdir=debian/tmp",
|
72 | - "--prefix=/usr", "--libdir=/usr/lib/ocaml",
|
|
74 | + "--prefix=/usr", "--libdir=$ocaml_stdlib_dir",
|
|
73 | 75 | $this->get_dune_package_names() );
|
74 | 76 | }
|
75 | 77 |
1 | +dh-ocaml (2.2) unstable; urgency=medium
|
|
2 | + |
|
3 | + * Add support for a different OCaml stdlib dir
|
|
4 | + |
|
5 | + -- Stéphane Glondu <glondu@debian.org> Sat, 03 Aug 2024 05:07:03 +0200
|
|
6 | + |
|
1 | 7 | dh-ocaml (2.1) unstable; urgency=medium
|
2 | 8 | |
3 | 9 | * Cope with move of dynlink.cmxa in OCaml 5.2.0
|