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 435BB138334 for ; Thu, 14 Feb 2019 08:38:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 345FDE0849; Thu, 14 Feb 2019 08:38:11 +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 11F82E0849 for ; Thu, 14 Feb 2019 08:38:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 884F5335D24 for ; Thu, 14 Feb 2019 08:38:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F0089503 for ; Thu, 14 Feb 2019 08:38:06 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1550133479.57668f2a996a42dae2455fd56acfd8ae75dc1fae.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/zsh/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/zsh/files/zprofile-4 X-VCS-Directories: app-shells/zsh/files/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 57668f2a996a42dae2455fd56acfd8ae75dc1fae X-VCS-Branch: master Date: Thu, 14 Feb 2019 08:38:06 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 1cf89638-f99a-43c6-970c-3db2772912d8 X-Archives-Hash: 7938c54e30975f96a158419e39000b40 commit: 57668f2a996a42dae2455fd56acfd8ae75dc1fae Author: Fabian Groffen gentoo org> AuthorDate: Thu Feb 14 08:37:30 2019 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Thu Feb 14 08:37:59 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57668f2a app-shells/zsh: fix zprofile for Prefix Closes: https://bugs.gentoo.org/677880 Signed-off-by: Fabian Groffen gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-shells/zsh/files/zprofile-4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-shells/zsh/files/zprofile-4 b/app-shells/zsh/files/zprofile-4 index 6402ca718d3..2e33b11f491 100644 --- a/app-shells/zsh/files/zprofile-4 +++ b/app-shells/zsh/files/zprofile-4 @@ -25,7 +25,7 @@ umask 022 if [ "$EUID" = "0" ] || [ "$USER" = "root" ] ; then # Check to make sure ROOTPATH is sane before we use it. # https://bugs.gentoo.org/656400 - if [[ :${ROOTPATH}: == *:@GENTOO_PORTAGE_EPREFIX@/usr/sbin:* ]]; then + if [[ :${ROOTPATH}: == *:/usr/sbin:* ]]; then PATH="${ROOTPATH}" fi fi