From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C089413835A for ; Tue, 23 Mar 2021 04:53:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF75CE0849; Tue, 23 Mar 2021 04:53:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A837CE0849 for ; Tue, 23 Mar 2021 04:53:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B98A733BEF8 for ; Tue, 23 Mar 2021 04:53:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B43B1632 for ; Tue, 23 Mar 2021 04:53:22 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1616474923.63cf5832ec596c399ff6362671b14ad9e3226479.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/mujs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/mujs/mujs-1.0.9.ebuild dev-lang/mujs/mujs-1.1.0.ebuild X-VCS-Directories: dev-lang/mujs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 63cf5832ec596c399ff6362671b14ad9e3226479 X-VCS-Branch: master Date: Tue, 23 Mar 2021 04:53:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: fcb33170-bf26-4b88-b78a-6f1398304fab X-Archives-Hash: 6f59800a6a8f7f301cc907f7718e33d1 commit: 63cf5832ec596c399ff6362671b14ad9e3226479 Author: Sam James gentoo org> AuthorDate: Mon Mar 22 22:27:31 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 23 04:48:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63cf5832 dev-lang/mujs: style change for src_install * Fix bash array name * Move target out of array (Still need to determine if we can drop static-libs here.) Signed-off-by: Sam James gentoo.org> dev-lang/mujs/mujs-1.0.9.ebuild | 5 ++--- dev-lang/mujs/mujs-1.1.0.ebuild | 5 ++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/dev-lang/mujs/mujs-1.0.9.ebuild b/dev-lang/mujs/mujs-1.0.9.ebuild index 5d2b197be95..352f7eef363 100644 --- a/dev-lang/mujs/mujs-1.0.9.ebuild +++ b/dev-lang/mujs/mujs-1.0.9.ebuild @@ -39,16 +39,15 @@ src_compile() { } src_install() { - local myeconfargs=( + local myemakeargs=( DESTDIR="${ED}" - install-shared libdir="/usr/$(get_libdir)" prefix="/usr" VERSION="${PV}" $(usex static-libs install-static '') ) - emake "${myeconfargs[@]}" + emake "${myemakeargs[@]}" install-shared mv -v "${ED}"/usr/$(get_libdir)/lib${PN}.so{,.${PV}} || die diff --git a/dev-lang/mujs/mujs-1.1.0.ebuild b/dev-lang/mujs/mujs-1.1.0.ebuild index 4bd8ae3dd9c..f7c940ce842 100644 --- a/dev-lang/mujs/mujs-1.1.0.ebuild +++ b/dev-lang/mujs/mujs-1.1.0.ebuild @@ -39,16 +39,15 @@ src_compile() { } src_install() { - local myeconfargs=( + local myemakeargs=( DESTDIR="${ED}" - install-shared libdir="/usr/$(get_libdir)" prefix="/usr" VERSION="${PV}" $(usex static-libs install-static '') ) - emake "${myeconfargs[@]}" + emake "${myemakeargs[@]}" install-shared mv -v "${ED}"/usr/$(get_libdir)/lib${PN}.so{,.${PV}} || die