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 682BF138334 for ; Thu, 9 Aug 2018 02:10:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21F4DE0936; Thu, 9 Aug 2018 02:10:20 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7132DE0931 for ; Thu, 9 Aug 2018 02:10:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5F39D335D41 for ; Wed, 8 Aug 2018 10:03:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0EFA4375 for ; Wed, 8 Aug 2018 10:03:40 +0000 (UTC) From: "Guilherme Amadio" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Guilherme Amadio" Message-ID: <1533722581.2974eda51bea48e4b6bec7c0dd79e21c5351dfd6.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/astyle/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/astyle/astyle-3.1-r2.ebuild X-VCS-Directories: dev-util/astyle/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 2974eda51bea48e4b6bec7c0dd79e21c5351dfd6 X-VCS-Branch: master Date: Wed, 8 Aug 2018 10:03:40 +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: 5bf3344d-4b1b-48a9-8a68-b9d0286e77d0 X-Archives-Hash: cc67918d0ff3e0aafa6143dde09d7334 commit: 2974eda51bea48e4b6bec7c0dd79e21c5351dfd6 Author: Guilherme Amadio gentoo org> AuthorDate: Wed Aug 8 10:02:07 2018 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Wed Aug 8 10:03:01 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2974eda5 dev-util/astyle: fix on prefix Ebuild functions like dosym already prepend ${EPREFIX}, so it should not be added in this case (leads to double prefix). Package-Manager: Portage-2.3.45, Repoman-2.3.10 dev-util/astyle/astyle-3.1-r2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-util/astyle/astyle-3.1-r2.ebuild b/dev-util/astyle/astyle-3.1-r2.ebuild index 4394e1defb2..cc209262632 100644 --- a/dev-util/astyle/astyle-3.1-r2.ebuild +++ b/dev-util/astyle/astyle-3.1-r2.ebuild @@ -54,7 +54,7 @@ src_install() { local libastylename="lib${PN}.so.${PV}.0" local libastylejname="lib${PN}j.so.${PV}.0" - local libdestdir="${EPREFIX}/usr/$(get_libdir)" + local libdestdir="/usr/$(get_libdir)" dolib.so "${libastylename}" dosym "${libastylename}" "${libdestdir}/lib${PN}.so.$(get_major_version)"