From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9379358973 for ; Tue, 9 Feb 2016 09:40:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FC7F21C0BB; Tue, 9 Feb 2016 09:40:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E926721C0BB for ; Tue, 9 Feb 2016 09:40:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1673A340917 for ; Tue, 9 Feb 2016 09:40:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DC808DF for ; Tue, 9 Feb 2016 09:40:12 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1455010763.76feb797af227c2e861e84393c3d38966f2a269d.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/moarvm/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/moarvm/moarvm-2016.01-r1.ebuild dev-lang/moarvm/moarvm-2016.01.ebuild X-VCS-Directories: dev-lang/moarvm/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: 76feb797af227c2e861e84393c3d38966f2a269d X-VCS-Branch: master Date: Tue, 9 Feb 2016 09:40:12 +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: 2ba73c21-0d19-4ce6-ab8a-2cf2cb6194f7 X-Archives-Hash: 98fdf376400acc224aaca11986e30b17 commit: 76feb797af227c2e861e84393c3d38966f2a269d Author: Patrick Lauer gentoo org> AuthorDate: Tue Feb 9 09:39:01 2016 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Tue Feb 9 09:39:23 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76feb797 dev-lang/moarvm: Fix path leakage #510706 Package-Manager: portage-2.2.27 dev-lang/moarvm/{moarvm-2016.01.ebuild => moarvm-2016.01-r1.ebuild} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-lang/moarvm/moarvm-2016.01.ebuild b/dev-lang/moarvm/moarvm-2016.01-r1.ebuild similarity index 87% rename from dev-lang/moarvm/moarvm-2016.01.ebuild rename to dev-lang/moarvm/moarvm-2016.01-r1.ebuild index af54566..f466d2d 100644 --- a/dev-lang/moarvm/moarvm-2016.01.ebuild +++ b/dev-lang/moarvm/moarvm-2016.01-r1.ebuild @@ -23,9 +23,9 @@ DEPEND="${RDEPEND} S="${WORKDIR}/MoarVM-${PV}" src_configure() { - perl Configure.pl --prefix="${D}/usr"|| die + perl Configure.pl --prefix="/usr"|| die } src_install() { - emake install + emake DESTDIR=${D} install }