diff options
author | Fabian Groffen <grobian@gentoo.org> | 2005-11-02 21:17:41 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2005-11-02 21:17:41 +0000 |
commit | edab392087f9a26ef5a4da4517baea0b75456c55 (patch) | |
tree | 6cb5633f2276ad622898e095ab2235be2d0f3c2a /app-shells | |
parent | Update lvm2-stop.sh for bug 57229 (diff) | |
download | gentoo-2-edab392087f9a26ef5a4da4517baea0b75456c55.tar.gz gentoo-2-edab392087f9a26ef5a4da4517baea0b75456c55.tar.bz2 gentoo-2-edab392087f9a26ef5a4da4517baea0b75456c55.zip |
Only add csh symlink if csh is not yet there for bug #26196
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/tcsh/ChangeLog | 5 | ||||
-rw-r--r-- | app-shells/tcsh/tcsh-6.14-r1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-shells/tcsh/ChangeLog b/app-shells/tcsh/ChangeLog index 0049dfa621f5..0611ae109abf 100644 --- a/app-shells/tcsh/ChangeLog +++ b/app-shells/tcsh/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-shells/tcsh # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.41 2005/09/30 19:42:05 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/ChangeLog,v 1.42 2005/11/02 21:17:41 grobian Exp $ + + 02 Nov 2005; Fabian Groffen <grobian@gentoo.org> tcsh-6.14-r1.ebuild: + Only add csh symlink if csh is not yet there for bug #26196 *tcsh-6.14-r1 (30 Sep 2005) diff --git a/app-shells/tcsh/tcsh-6.14-r1.ebuild b/app-shells/tcsh/tcsh-6.14-r1.ebuild index 7a759f65a508..afe1670e0c3d 100644 --- a/app-shells/tcsh/tcsh-6.14-r1.ebuild +++ b/app-shells/tcsh/tcsh-6.14-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.14-r1.ebuild,v 1.1 2005/09/30 19:42:05 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/tcsh/tcsh-6.14-r1.ebuild,v 1.2 2005/11/02 21:17:41 grobian Exp $ MY_P="${P}.00" DESCRIPTION="Enhanced version of the Berkeley C shell (csh)" @@ -35,7 +35,7 @@ src_install() { dohtml tcsh.html/*.html fi - dosym /bin/tcsh /bin/csh + [ ! -e /bin/csh ] && dosym /bin/tcsh /bin/csh dodoc FAQ Fixes NewThings Ported README WishList Y2K insinto /etc |