diff options
author | 2022-01-24 14:31:21 +0100 | |
---|---|---|
committer | 2022-01-24 14:31:21 +0100 | |
commit | 9959ec1a453b88d35cc57f7f309c1ad857cf9ff5 (patch) | |
tree | 0f2ef7742fa072d3155a5064184890d67eb08063 /dev-ml/camlidl/camlidl-1.05-r1.ebuild | |
parent | sys-apps/memtest86-bin: bump to 9.4, drop old (diff) | |
download | gentoo-9959ec1a453b88d35cc57f7f309c1ad857cf9ff5.tar.gz gentoo-9959ec1a453b88d35cc57f7f309c1ad857cf9ff5.tar.bz2 gentoo-9959ec1a453b88d35cc57f7f309c1ad857cf9ff5.zip |
dev-ml/camlidl: do not call ranlib directly
Closes: https://bugs.gentoo.org/831862
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
Diffstat (limited to 'dev-ml/camlidl/camlidl-1.05-r1.ebuild')
-rw-r--r-- | dev-ml/camlidl/camlidl-1.05-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-ml/camlidl/camlidl-1.05-r1.ebuild b/dev-ml/camlidl/camlidl-1.05-r1.ebuild index 2dfb9b3cf8db..d7cbca3f978e 100644 --- a/dev-ml/camlidl/camlidl-1.05-r1.ebuild +++ b/dev-ml/camlidl/camlidl-1.05-r1.ebuild @@ -39,7 +39,7 @@ src_compile() { ln -s Makefile.unix config/Makefile || die # Make - emake -j1 + emake -j1 RANLIB="$(tc-getRANLIB)" } src_test() { @@ -54,7 +54,7 @@ src_install() { dodir /usr/bin # Install - emake BINDIR="${ED}/usr/bin" OCAMLLIB="${D}${libdir}" install + emake BINDIR="${ED}/usr/bin" OCAMLLIB="${D}${libdir}" RANLIB="$(tc-getRANLIB)" install # Add package header sed -e "s/@VERSION/${P}/g" "${FILESDIR}/META.camlidl" > "${D}${libdir}/META.camlidl" || die |