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 6F9E013829C for ; Mon, 13 Jun 2016 20:51:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B5EA6E0960; Mon, 13 Jun 2016 20:51:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 6C749E0960 for ; Mon, 13 Jun 2016 20:51:20 +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 5989833F9D2 for ; Mon, 13 Jun 2016 20:51:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7AE03963 for ; Mon, 13 Jun 2016 20:51:13 +0000 (UTC) From: "Michael Weber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Weber" Message-ID: <1465851071.408ce071bf97f0096517c44b8e8df599af9bf9ab.xmw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/mujs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/mujs/mujs-0_p20150202.ebuild dev-lang/mujs/mujs-0_p20160504.ebuild X-VCS-Directories: dev-lang/mujs/ X-VCS-Committer: xmw X-VCS-Committer-Name: Michael Weber X-VCS-Revision: 408ce071bf97f0096517c44b8e8df599af9bf9ab X-VCS-Branch: master Date: Mon, 13 Jun 2016 20:51:13 +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: b1819b1a-be26-45f2-b028-13b5813f0982 X-Archives-Hash: dbe7ab30dea2bc9547e46aac021b4059 commit: 408ce071bf97f0096517c44b8e8df599af9bf9ab Author: Michael Weber gentoo org> AuthorDate: Mon Jun 13 20:50:54 2016 +0000 Commit: Michael Weber gentoo org> CommitDate: Mon Jun 13 20:51:11 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=408ce071 dev-lang/mujs: fix Prefix support, thanks Benda Xu, bug 585426. Package-Manager: portage-2.2.28 dev-lang/mujs/mujs-0_p20150202.ebuild | 4 ++++ dev-lang/mujs/mujs-0_p20160504.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/dev-lang/mujs/mujs-0_p20150202.ebuild b/dev-lang/mujs/mujs-0_p20150202.ebuild index 4d215ba..972896d 100644 --- a/dev-lang/mujs/mujs-0_p20150202.ebuild +++ b/dev-lang/mujs/mujs-0_p20150202.ebuild @@ -25,3 +25,7 @@ src_prepare() { append-cflags -fPIC tc-export CC } + +src_install() { + emake DESTDIR="${ED}" install +} diff --git a/dev-lang/mujs/mujs-0_p20160504.ebuild b/dev-lang/mujs/mujs-0_p20160504.ebuild index da44f03..5938ab5 100644 --- a/dev-lang/mujs/mujs-0_p20160504.ebuild +++ b/dev-lang/mujs/mujs-0_p20160504.ebuild @@ -25,3 +25,7 @@ src_prepare() { append-cflags -fPIC tc-export CC } + +src_install() { + emake DESTDIR="${ED}" install +}