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 A97A6139694 for ; Tue, 28 Feb 2017 20:42:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 152A2E0C9A; Tue, 28 Feb 2017 20:42:10 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DF8D9E0C9A for ; Tue, 28 Feb 2017 20:42:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B3F4734168A for ; Tue, 28 Feb 2017 20:42:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2AD3457E4 for ; Tue, 28 Feb 2017 20:42:07 +0000 (UTC) From: "Ian Stakenvicius" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Stakenvicius" Message-ID: <1488314521.6d21716841c6139b21339e97626f97b4e98d7c45.axs@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/spidermonkey/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/spidermonkey/spidermonkey-38.2.1_rc0.ebuild dev-lang/spidermonkey/spidermonkey-45.0.2.ebuild X-VCS-Directories: dev-lang/spidermonkey/ X-VCS-Committer: axs X-VCS-Committer-Name: Ian Stakenvicius X-VCS-Revision: 6d21716841c6139b21339e97626f97b4e98d7c45 X-VCS-Branch: master Date: Tue, 28 Feb 2017 20:42:07 +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-Archives-Salt: 3546e485-f321-4b86-97c3-24af5229a07b X-Archives-Hash: 2d35ac1587ca9c35928549c438c8f539 commit: 6d21716841c6139b21339e97626f97b4e98d7c45 Author: Ian Stakenvicius gentoo org> AuthorDate: Tue Feb 28 20:41:15 2017 +0000 Commit: Ian Stakenvicius gentoo org> CommitDate: Tue Feb 28 20:42:01 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d217168 dev-lang/spidermonkey:{38,45} drop more static libs Package-Manager: portage-2.3.3 dev-lang/spidermonkey/spidermonkey-38.2.1_rc0.ebuild | 2 +- dev-lang/spidermonkey/spidermonkey-45.0.2.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-lang/spidermonkey/spidermonkey-38.2.1_rc0.ebuild b/dev-lang/spidermonkey/spidermonkey-38.2.1_rc0.ebuild index a34a7534a6d..42e2c0460c4 100644 --- a/dev-lang/spidermonkey/spidermonkey-38.2.1_rc0.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-38.2.1_rc0.ebuild @@ -140,6 +140,6 @@ src_install() { if ! use static-libs; then # We can't actually disable building of static libraries # They're used by the tests and in a few other places - find "${D}" -iname '*.a' -delete || die + find "${D}" -iname '*.a' -o -iname '*.ajs' -delete || die fi } diff --git a/dev-lang/spidermonkey/spidermonkey-45.0.2.ebuild b/dev-lang/spidermonkey/spidermonkey-45.0.2.ebuild index addd5d92d01..26f88cce97f 100644 --- a/dev-lang/spidermonkey/spidermonkey-45.0.2.ebuild +++ b/dev-lang/spidermonkey/spidermonkey-45.0.2.ebuild @@ -141,6 +141,6 @@ src_install() { if ! use static-libs; then # We can't actually disable building of static libraries # They're used by the tests and in a few other places - find "${D}" -iname '*.a' -delete || die + find "${D}" -iname '*.a' -o -iname '*.ajs' -delete || die fi }