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 7532B1384B4 for ; Sat, 7 Nov 2015 20:25:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DF427E083A; Sat, 7 Nov 2015 20:25:20 +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 57B2AE083A for ; Sat, 7 Nov 2015 20:25:20 +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 509BC3405D5 for ; Sat, 7 Nov 2015 20:25:17 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1A77619F for ; Sat, 7 Nov 2015 20:25:14 +0000 (UTC) From: "Julian Ospald" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Julian Ospald" Message-ID: <1446816734.b80cf973d108302eff58d2a7ab264cd74cdef72b.hasufell@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/http-parser/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/http-parser/http-parser-2.6.0.ebuild X-VCS-Directories: net-libs/http-parser/ X-VCS-Committer: hasufell X-VCS-Committer-Name: Julian Ospald X-VCS-Revision: b80cf973d108302eff58d2a7ab264cd74cdef72b X-VCS-Branch: master Date: Sat, 7 Nov 2015 20:25:14 +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: 7d82a3a9-8ec9-4696-a9d9-ac7a367b2bc4 X-Archives-Hash: 39bf3ca2dc27660b8a2d88cf9c3e922c commit: b80cf973d108302eff58d2a7ab264cd74cdef72b Author: mschubert gmail com> AuthorDate: Fri Nov 6 13:32:08 2015 +0000 Commit: Julian Ospald gentoo org> CommitDate: Fri Nov 6 13:32:14 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b80cf973 net-libs/http-parser: respect ${EPREFIX} net-libs/http-parser/http-parser-2.6.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-libs/http-parser/http-parser-2.6.0.ebuild b/net-libs/http-parser/http-parser-2.6.0.ebuild index 186c880..7a5bcfe 100644 --- a/net-libs/http-parser/http-parser-2.6.0.ebuild +++ b/net-libs/http-parser/http-parser-2.6.0.ebuild @@ -40,6 +40,6 @@ multilib_src_test() { } multilib_src_install() { - emake DESTDIR="${D}" PREFIX="/usr" LIBDIR="/usr/$(get_libdir)" install + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" install use static-libs && dolib.a libhttp_parser.a }