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 17FE41393EA for ; Mon, 17 Mar 2014 21:04:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 13F61E0ADD; Mon, 17 Mar 2014 21:04:23 +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 9446DE0ADD for ; Mon, 17 Mar 2014 21:04:22 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 341E233FA7F for ; Mon, 17 Mar 2014 21:04:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id D604C18875 for ; Mon, 17 Mar 2014 21:04:19 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1395085866.3c9a7fbd013074aa071bd0a9374ab664f69be1f0.johu@gentoo> Subject: [gentoo-commits] dev/johu:master commit in: dev-vcs/git-flow/ X-VCS-Repository: dev/johu X-VCS-Files: dev-vcs/git-flow/git-flow-0.4.1.ebuild X-VCS-Directories: dev-vcs/git-flow/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 3c9a7fbd013074aa071bd0a9374ab664f69be1f0 X-VCS-Branch: master Date: Mon, 17 Mar 2014 21:04:19 +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: dbb2a788-f427-4696-81c3-feca19a2aba4 X-Archives-Hash: afcf49289eb25fdbcb0aab5184dfbfc5 commit: 3c9a7fbd013074aa071bd0a9374ab664f69be1f0 Author: Johannes Huber gentoo org> AuthorDate: Mon Mar 17 19:51:06 2014 +0000 Commit: Johannes Huber gentoo org> CommitDate: Mon Mar 17 19:51:06 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=dev/johu.git;a=commit;h=3c9a7fbd [dev-vcs/git-flow] Fix install location Binaries were install to /bin instead of /usr/bin. Package-Manager: portage-2.2.8-r1 --- dev-vcs/git-flow/git-flow-0.4.1.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-vcs/git-flow/git-flow-0.4.1.ebuild b/dev-vcs/git-flow/git-flow-0.4.1.ebuild index 6949f44..55ceae3 100644 --- a/dev-vcs/git-flow/git-flow-0.4.1.ebuild +++ b/dev-vcs/git-flow/git-flow-0.4.1.ebuild @@ -33,7 +33,7 @@ src_compile() { } src_install() { - emake prefix="${D}" install + emake prefix="${D}/usr" install dodoc "${DOCS[@]}"