commit: 00bdf68890fcae050410698bfdb5bb25b1f3e6b1
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 25 19:14:43 2022 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Tue Jan 25 19:14:43 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00bdf688
dev-ml/ocaml-process: fix ocamlopt build
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
b/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
index de33c2c8fc59..2979a23b9a6f 100644
--- a/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
+++ b/dev-ml/ocaml-process/ocaml-process-0.2.1.ebuild
@@ -24,13 +24,13 @@ src_compile() {
exts=.cma
use ocamlopt && exts+=' .cmx .cmxa'
export pkgs
- emake TARGETS=${exts}
+ emake TARGETS="${exts}"
}
src_install() {
local archive=''
use ocamlopt && archive='_build/lib/process.a'
- findlib_src_install TARGETS=${exts} ARCHIVES=${archives}
+ findlib_src_install TARGETS="${exts}" ARCHIVES=${archives}
}
src_test() {