diff options
author | Christian Heim <phreak@gentoo.org> | 2005-08-13 08:10:53 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2005-08-13 08:10:53 +0000 |
commit | d0e90f04bb6a249f6b6251eaa117944e0b976e2f (patch) | |
tree | c3e60fe3fdcf0c735ca3677465898ffb8d1da499 /eclass/cvs.eclass | |
parent | Marked imlib2-1.1.2 stable on ppc-macos (diff) | |
download | historical-d0e90f04bb6a249f6b6251eaa117944e0b976e2f.tar.gz historical-d0e90f04bb6a249f6b6251eaa117944e0b976e2f.tar.bz2 historical-d0e90f04bb6a249f6b6251eaa117944e0b976e2f.zip |
Fixing a typo inside ECVS_AUTH=ext (someone introduced SSH_RSH which actually is CVS_RSH, causing the eclass/ebuild using the eclass to fail on the if)
Diffstat (limited to 'eclass/cvs.eclass')
-rw-r--r-- | eclass/cvs.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/cvs.eclass b/eclass/cvs.eclass index aab6827e514c..1ebd12349025 100644 --- a/eclass/cvs.eclass +++ b/eclass/cvs.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.58 2005/07/11 15:08:06 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cvs.eclass,v 1.59 2005/08/13 08:10:53 phreak Exp $ # Current Maintainer: Tal Peer <coredumb@gentoo.org> # Original Author: Dan Armak <danarmak@gentoo.org> @@ -161,7 +161,7 @@ DEPEND="dev-util/cvs app-admin/sudo" if [ "$ECVS_AUTH" == "ext" ]; then #default to ssh - [ -z "$CVS_RSH" ] && export SSH_RSH="ssh" + [ -z "$CVS_RSH" ] && export CVS_RSH="ssh" if [ "$CVS_RSH" != "ssh" ]; then die "Support for ext auth with clients other than ssh has not been implemented yet" fi |