commit: 35dc12f602e30529f1a3de492e2faaa0160a4e94 Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org> AuthorDate: Thu Oct 2 16:46:09 2025 +0000 Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org> CommitDate: Thu Oct 2 16:46:29 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35dc12f6
dev-ml/cmdliner: fix install Closes: https://bugs.gentoo.org/963632 Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org> dev-ml/cmdliner/cmdliner-2.0.0.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-ml/cmdliner/cmdliner-2.0.0.ebuild b/dev-ml/cmdliner/cmdliner-2.0.0.ebuild index 2b5544debee9..a7409474e2a6 100644 --- a/dev-ml/cmdliner/cmdliner-2.0.0.ebuild +++ b/dev-ml/cmdliner/cmdliner-2.0.0.ebuild @@ -34,8 +34,8 @@ src_install() { # Can't use opam-installer here as it is an opam dep... findlib_src_preinst local nativelibs="" - use ocamlopt && nativelibs="$(echo _build/cmdliner.cm{x,xa,xs} _build/cmdliner.a)" + use ocamlopt && nativelibs="$(echo _build/src/cmdliner.cm{x,xa,xs} _build/src/cmdliner.a)" ocamlfind install cmdliner pkg/META \ - _build/cmdliner.mli _build/cmdliner.cm{a,i} ${nativelibs} || die + _build/src/cmdliner.mli _build/src/cmdliner.cm{a,i} ${nativelibs} || die dodoc README.md CHANGES.md }
