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 7A9171396D0 for ; Wed, 9 Aug 2017 09:19:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D973D1FC005; Wed, 9 Aug 2017 09:19:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 BA6C51FC005 for ; Wed, 9 Aug 2017 09:19:30 +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 E6763341A3A for ; Wed, 9 Aug 2017 09:19:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F17D7491 for ; Wed, 9 Aug 2017 09:19:28 +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: <1502270352.6d45b94abca08b1c124e1125375d1c86702fa14b.amadio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/baselayout/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/baselayout/baselayout-2.4.1-r1.ebuild sys-apps/baselayout/baselayout-2.4.1.ebuild X-VCS-Directories: sys-apps/baselayout/ X-VCS-Committer: amadio X-VCS-Committer-Name: Guilherme Amadio X-VCS-Revision: 6d45b94abca08b1c124e1125375d1c86702fa14b X-VCS-Branch: master Date: Wed, 9 Aug 2017 09:19:28 +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: 67740a8e-0030-49d7-a9e1-6862de8d41cc X-Archives-Hash: 38fda40dcf12b87ed4aad6161d2a15b7 commit: 6d45b94abca08b1c124e1125375d1c86702fa14b Author: Guilherme Amadio gentoo org> AuthorDate: Wed Aug 9 09:10:43 2017 +0000 Commit: Guilherme Amadio gentoo org> CommitDate: Wed Aug 9 09:19:12 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d45b94a sys-apps/baselayout: add ${EPREFIX}/bin to $PATH on prefix Fixes: https://bugs.gentoo.org/624522 Package-Manager: Portage-2.3.6, Repoman-2.3.3 .../baselayout/{baselayout-2.4.1.ebuild => baselayout-2.4.1-r1.ebuild} | 1 + 1 file changed, 1 insertion(+) diff --git a/sys-apps/baselayout/baselayout-2.4.1.ebuild b/sys-apps/baselayout/baselayout-2.4.1-r1.ebuild similarity index 99% rename from sys-apps/baselayout/baselayout-2.4.1.ebuild rename to sys-apps/baselayout/baselayout-2.4.1-r1.ebuild index 0c2d7de0cd4..e0b71bd2af4 100644 --- a/sys-apps/baselayout/baselayout-2.4.1.ebuild +++ b/sys-apps/baselayout/baselayout-2.4.1-r1.ebuild @@ -144,6 +144,7 @@ src_prepare() { -e "/PATH=.*\/bin/s|\"$|:/usr/bin:/bin\"|" \ etc/profile || die sed -i -r \ + -e "s@:/bin@:${EPREFIX}/bin@g" \ -e "s:/(etc/env.d|opt|usr):${EPREFIX}/\1:g" \ -e "/^PATH=/s|\"$|:${EPREFIX}/usr/sbin:${EPREFIX}/sbin\"|" \ etc/env.d/50baselayout || die