From a862c6a5efec5e4d800dcb39c3c632958741f49a Mon Sep 17 00:00:00 2001 From: Christian Heim Date: Sat, 13 Aug 2005 08:10:53 +0000 Subject: 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) --- eclass/cvs.eclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eclass') 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 # Original Author: Dan Armak @@ -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 -- cgit v1.2.3-65-gdbad