From eb2262b9f56658880178a94f853f9fc3d37beaaa Mon Sep 17 00:00:00 2001 From: Leah Neukirchen Date: Wed, 24 Nov 2021 17:50:50 +0100 Subject: [PATCH] ocaml: install stdlib to /usr/lib/ocaml. Libraries using findlib are already in /usr/lib/ocaml, OCaml links statically, so no rebuilds required. Closes #33911. --- srcpkgs/ocaml/template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/srcpkgs/ocaml/template b/srcpkgs/ocaml/template index 6c4a9cf4416..629c13791df 100644 --- a/srcpkgs/ocaml/template +++ b/srcpkgs/ocaml/template @@ -1,9 +1,9 @@ # Template file for 'ocaml' pkgname=ocaml version=4.13.1 -revision=1 +revision=2 build_style="gnu-configure" -configure_args="--with-pic" +configure_args="--with-pic --libdir=/usr/lib/ocaml" make_build_target="world.opt" makedepends="ncurses-devel libX11-devel" short_desc="Main implementation of the Caml language"